Introduction
# The topic of our project is "Analysis and Prediction of Factors influencing Nuclear Power Plant Cost."
# The main time consuming task for our project was Data Sourcing and Data Cleansing our our csv file. Around 80-90% of the effort went into collating the final csv file.
# The goal of our project is to know what factors influence the cost of a nuclear power plant.
# In our Project, the response variable (dependent variable) shall be "Cost (US$)" (In Billions).
# The Predictor variables (independent variables which influence the varaible "Cost") shall be the following: -
# 1) Country: - Qualitative variable which lists the name of the country where the nuclear reactor was made. 21 types of countries are listed in our csv file.
# 2) Reactor Type: - Nuclear energy can be implemented in many different ways; hence the different types of Nuclear Reactors. In our data set, we have a list of 7 different reactor types.
# 3) Gross Capacity (MWe): - The amount of electricity the nuclear reactor can generate during its operation. The units are in Mega Watts Electric.
# 4) Thermal Capacity (MWt): - The amount of heat the nuclear reactor generates due to fission. Do note that heat is converted to electricity. The units are in Mega Watts Thermal.
# 5) Efficiency Percentage: - How efficient is the nuclear reactor in converting heat to electricity? The more the efficiency; the more heat is converted to electricity.
# 6) Starting Year: - The year when the construction of that nuclear reactor started.
# 7) Duration (in years): - The number of years it took to make that nuclear reactor from start to end.
# 8) Average Inflation Percentage: - The amount of inflation that occurred (YoY) during the time period it took for construction of the reactor.
# 9) Average Concrete Price: - The average concrete price during the time period it took for construction of the reactor. (Producer Price Index (PPI) value is given)
# 10) Average Steel Price: - The average steel price during the time period it took for construction of the reactor. (Producer Price Index (PPI) value is given)
Hypothesis
# Our Hypothesis of how the predictor variables should affect the response variable are as follows: -
# 1) Country: - We expect to see different prices of nuclear reactors on the basis of different countries due to various differences in labour costs, laws and regulations, financing methods which are paticular for that specific country etc.
# 2) Reactor Type: - We expect to see that the reactor type "PWR" be the cheapest reactor to be constructed because it is the most common type of nuclear reactor to be made. Economies of scale dictates that enterprises obtain due to their scale of operation more cost advantages over others who cannot scale.
# On a similar note, we expect to see "FBR" reactor to be the most costly one becuase it is one of the most challenging reactor to be made.
# 3) Gross Capacity (MWe): - The more electricity a nuclear reactor generates, the more costly the reactors should be, since the conventional island would be bigger in size.
# 4) Thermal Capacity (MWt): - The more heat a reactor generates, the more costly that reactor should be, since the reactor core would be bigger in size.
# 5) Efficiency Percentage: - The more efficient the reactor is, it means the more expensive turbine and generator in the conventional island was used. Hence more the efficiency, more the cost.
# 6) Starting Year: - We expect to see the reactors which were made in earlier years to be cheaper than the reactors which are made in modern times due to less safety regulations, lax laws and ease of financing during earlier times.
# 7) Duration: - The more time a reactor takes to be constructed, the more costly it should be due to cost overruns etc.
# 8) Average Inflation Percentage: - The more the inflation is during a certain period of time, the costlier the things would be.
# 9) Average Concrete Price: - Over 95% of materials which makes a nuclear reactor is steel and concrete. We expect to see, the more the average price of steel, the more the reactor cost.
# 10) Average Steel Price: - Over 95% of materials which makes a nuclear reactor is steel and concrete. We expect to see, the more the average price of steel, the more the reactor cost.
Dataset sourcing
# Our final CSV file was made with the combination of data taken from the following websites linked below: -
# Construction Time, Start year, Country, Capacity, Reactor Type, Frequency : - https://pris.iaea.org/PRIS/CountryStatistics/CountryDetails.aspx?current=IN
# Steel cost : - https://fred.stlouisfed.org/series/WPU101
# Cement cost : - https://fred.stlouisfed.org/series/WPU1333
# Inflation Rate : - https://data.worldbank.org/indicator/FP.CPI.TOTL.ZG
# Cost of reactors: -
# AP1000's: https://de.nucleopedia.org/wiki/Advanced_Passive#Auftr%C3%A4ge
# VVER-1200: https://de.nucleopedia.org/wiki/WWER-1200#Auftr%C3%A4ge
# Some VVER-1000: https://de.nucleopedia.org/wiki/Liste_der_WWER#Version_392
# EPR: https://de.nucleopedia.org/wiki/Framatome_EPR#Auftr%C3%A4ge
# CNP-300: https://de.nucleopedia.org/wiki/Benutzer:TZV/CNP-300#Auftr%C3%A4ge
# CE System 80: https://de.nucleopedia.org/wiki/Benutzer:TZV/Combustion_Engineering_System_80#Auftr%C3%A4ge
# Hualong One: https://de.nucleopedia.org/wiki/Benutzer:TZV/HPR#Auftr%C3%A4ge
Index
# In the following .Rmd file: we shall be going through the following steps: -
# 1) Pre-screening Process: -
# 1) Checking for Multicollinearity
# 2) Global F-Test
# 3) Step-wise / Backward Procedure
# 4) Individual T-test
# 2) Making Additive Model
# 3) Making Interaction Model
# 4) Making Higher Order Model
# 5) Testing for Assumptions
# 1) Linearity Assumption
# 2) Independence Assumption
# 3) Checking for Homoscedasticity
# 4) Normality Assumption
# 5) Checking for Outliers
# 6) Making Predictions
Preparation
library(binom)
library(car)
## Loading required package: carData
library(collapsibleTree)
library(dbplyr)
library(dplyr)
##
## Attaching package: 'dplyr'
## The following objects are masked from 'package:dbplyr':
##
## ident, sql
## The following object is masked from 'package:car':
##
## recode
## The following objects are masked from 'package:stats':
##
## filter, lag
## The following objects are masked from 'package:base':
##
## intersect, setdiff, setequal, union
library(EnvStats)
##
## Attaching package: 'EnvStats'
## The following object is masked from 'package:car':
##
## qqPlot
## The following objects are masked from 'package:stats':
##
## predict, predict.lm
## The following object is masked from 'package:base':
##
## print.default
library(ggformula)
## Loading required package: ggplot2
## Loading required package: ggstance
##
## Attaching package: 'ggstance'
## The following objects are masked from 'package:ggplot2':
##
## geom_errorbarh, GeomErrorbarh
## Loading required package: scales
## Loading required package: ggridges
##
## New to ggformula? Try the tutorials:
## learnr::run_tutorial("introduction", package = "ggformula")
## learnr::run_tutorial("refining", package = "ggformula")
library(ggplot2)
library(gmodels)
library(htmltools)
library(ISLR)
library(knitr)
library(lawstat)
##
## Attaching package: 'lawstat'
## The following object is masked from 'package:car':
##
## levene.test
library(markdown)
library(mosaic)
## Registered S3 method overwritten by 'mosaic':
## method from
## fortify.SpatialPolygonsDataFrame ggplot2
##
## The 'mosaic' package masks several functions from core packages in order to add
## additional features. The original behavior of these functions should not be affected by this.
##
## Attaching package: 'mosaic'
## The following object is masked from 'package:Matrix':
##
## mean
## The following object is masked from 'package:scales':
##
## rescale
## The following object is masked from 'package:ggplot2':
##
## stat
## The following object is masked from 'package:EnvStats':
##
## iqr
## The following objects are masked from 'package:dplyr':
##
## count, do, tally
## The following objects are masked from 'package:car':
##
## deltaMethod, logit
## The following objects are masked from 'package:stats':
##
## binom.test, cor, cor.test, cov, fivenum, IQR, median, prop.test,
## quantile, sd, t.test, var
## The following objects are masked from 'package:base':
##
## max, mean, min, prod, range, sample, sum
library(mdsr)
library(mosaicData)
library(nycflights13)
library(olsrr)
##
## Attaching package: 'olsrr'
## The following object is masked from 'package:datasets':
##
## rivers
library(plyr)
## ------------------------------------------------------------------------------
## You have loaded plyr after dplyr - this is likely to cause problems.
## If you need functions from both plyr and dplyr, please load plyr first, then dplyr:
## library(plyr); library(dplyr)
## ------------------------------------------------------------------------------
##
## Attaching package: 'plyr'
## The following object is masked from 'package:mosaic':
##
## count
## The following objects are masked from 'package:dplyr':
##
## arrange, count, desc, failwith, id, mutate, rename, summarise,
## summarize
library(purrr)
##
## Attaching package: 'purrr'
## The following object is masked from 'package:plyr':
##
## compact
## The following object is masked from 'package:mosaic':
##
## cross
## The following object is masked from 'package:scales':
##
## discard
## The following object is masked from 'package:car':
##
## some
library(plotly)
##
## Attaching package: 'plotly'
## The following objects are masked from 'package:plyr':
##
## arrange, mutate, rename, summarise
## The following object is masked from 'package:mosaic':
##
## do
## The following object is masked from 'package:ggplot2':
##
## last_plot
## The following object is masked from 'package:stats':
##
## filter
## The following object is masked from 'package:graphics':
##
## layout
library(resampledata)
##
## Attaching package: 'resampledata'
## The following object is masked from 'package:carData':
##
## Salaries
## The following object is masked from 'package:datasets':
##
## Titanic
library(rmarkdown)
library(rpart)
library(rpart.plot)
library(rvest)
library(SDaA)
##
## Attaching package: 'SDaA'
## The following object is masked from 'package:plyr':
##
## ozone
## The following object is masked from 'package:ggplot2':
##
## seals
library(shiny)
library(stringi)
library(tibble)
library(tidyr)
##
## Attaching package: 'tidyr'
## The following objects are masked from 'package:Matrix':
##
## expand, pack, unpack
library(tidyselect)
library(tinytex)
library(yaml)
library(shiny)
library(GGally)
## Registered S3 method overwritten by 'GGally':
## method from
## +.gg ggplot2
library(lmtest)
## Loading required package: zoo
##
## Attaching package: 'zoo'
## The following objects are masked from 'package:base':
##
## as.Date, as.Date.numeric
library(ggplot2)
library(mctest)
library(MASS)
##
## Attaching package: 'MASS'
## The following object is masked from 'package:plotly':
##
## select
## The following object is masked from 'package:olsrr':
##
## cement
## The following object is masked from 'package:EnvStats':
##
## boxcox
## The following object is masked from 'package:dplyr':
##
## select
library(agricolae)
##
## Attaching package: 'agricolae'
## The following objects are masked from 'package:EnvStats':
##
## kurtosis, skewness
# Attaching our Nuclear CSV file.
nuclear.df = read.table("Nuclear_Data.csv",sep =",", header = TRUE)
head(nuclear.df , 5)
## Cost_Billion_Dollars Name Country Reactor_Type
## 1 1.261 ANO-1 UNITED STATES OF AMERICA PWR
## 2 1.261 ANO-2 UNITED STATES OF AMERICA PWR
## 3 4.260 BEAVER VALLEY-1 UNITED STATES OF AMERICA PWR
## 4 4.260 BEAVER VALLEY-2 UNITED STATES OF AMERICA PWR
## 5 0.027 BIG ROCK POINT UNITED STATES OF AMERICA BWR
## Gross_Capacity_MWe Thermal_Capacity_MWt Efficiency_Percentage Starting_Year
## 1 903 2568 35.16 1968
## 2 1065 3026 35.19 1968
## 3 959 2900 33.07 1970
## 4 958 2900 33.03 1974
## 5 71 240 29.58 1960
## Duration Average_Inflation_Percentage Average_Concrete_Price
## 1 6 0.0488 37.12333
## 2 10 0.0616 41.70000
## 3 6 0.0660 44.66237
## 4 13 0.0721 83.84615
## 5 2 0.0126 30.00000
## Average_Steel_Price
## 1 34.33333
## 2 44.70000
## 3 42.66667
## 4 84.38462
## 5 28.00000
tail(nuclear.df , 5)
## Cost_Billion_Dollars Name Country Reactor_Type Gross_Capacity_MWe
## 257 1.7 YANGJIANG-2 CHINA PWR 1086
## 258 1.7 YANGJIANG-3 CHINA PWR 1086
## 259 1.7 YANGJIANG-4 CHINA PWR 1086
## 260 1.7 YANGJIANG-5 CHINA PWR 1086
## 261 1.7 YANGJIANG-6 CHINA PWR 1086
## Thermal_Capacity_MWt Efficiency_Percentage Starting_Year Duration
## 257 2905 37.38 2009 6
## 258 2905 37.38 2010 5
## 259 2905 37.38 2012 4
## 260 2905 37.38 2013 5
## 261 2905 37.38 2014 5
## Average_Inflation_Percentage Average_Concrete_Price Average_Steel_Price
## 257 1.67 222.44 222.22
## 258 1.68 223.21 228.59
## 259 1.12 233.59 216.35
## 260 1.52 247.36 215.14
## 261 1.55 256.62 214.44
nuclear.regression.model<-lm(Cost_Billion_Dollars~factor(Country)+factor(Reactor_Type)+Gross_Capacity_MWe+Thermal_Capacity_MWt+Efficiency_Percentage+Starting_Year+Duration+Average_Inflation_Percentage+Average_Concrete_Price+Average_Steel_Price, data = nuclear.df)
summary(nuclear.regression.model)
##
## Call:
## lm(formula = Cost_Billion_Dollars ~ factor(Country) + factor(Reactor_Type) +
## Gross_Capacity_MWe + Thermal_Capacity_MWt + Efficiency_Percentage +
## Starting_Year + Duration + Average_Inflation_Percentage +
## Average_Concrete_Price + Average_Steel_Price, data = nuclear.df)
##
## Residuals:
## Min 1Q Median 3Q Max
## -4.2736 -0.6970 -0.1552 0.3549 13.0265
##
## Coefficients:
## Estimate Std. Error t value Pr(>|t|)
## (Intercept) 166.697750 114.212347 1.460 0.145804
## factor(Country)BELARUS 7.236371 2.256714 3.207 0.001538
## factor(Country)BRAZIL 0.487800 1.751574 0.278 0.780889
## factor(Country)CANADA -0.381484 1.082528 -0.352 0.724866
## factor(Country)CHINA -0.586057 1.434249 -0.409 0.683209
## factor(Country)CZECH REPUBLIC 0.015715 1.641787 0.010 0.992371
## factor(Country)FRANCE 0.781788 1.779361 0.439 0.660817
## factor(Country)GERMANY -1.162086 1.941256 -0.599 0.550022
## factor(Country)INDIA -0.581849 1.504959 -0.387 0.699401
## factor(Country)IRAN, ISLAMIC REPUBLIC OF 5.508453 2.305576 2.389 0.017707
## factor(Country)JAPAN 1.693244 1.676433 1.010 0.313562
## factor(Country)KOREA, REPUBLIC OF -1.194813 1.825173 -0.655 0.513372
## factor(Country)MEXICO -1.050405 2.252968 -0.466 0.641499
## factor(Country)PAKISTAN 0.605046 1.674063 0.361 0.718120
## factor(Country)RUSSIA -1.083805 1.596656 -0.679 0.497961
## factor(Country)SLOVAKIA 1.752341 1.920611 0.912 0.362537
## factor(Country)SWEDEN 2.429957 2.637640 0.921 0.357896
## factor(Country)SWITZERLAND 1.275678 2.290133 0.557 0.578057
## factor(Country)UNITED ARAB EMIRATES 1.384647 1.867246 0.742 0.459133
## factor(Country)UNITED KINGDOM 0.079532 2.649904 0.030 0.976083
## factor(Country)UNITED STATES OF AMERICA 1.503517 1.546400 0.972 0.331956
## factor(Reactor_Type)FBR 2.739555 0.886460 3.090 0.002249
## factor(Reactor_Type)GCR 2.209838 2.587492 0.854 0.393984
## factor(Reactor_Type)HTGR 3.960044 1.167296 3.392 0.000818
## factor(Reactor_Type)LWGR 5.110420 1.590596 3.213 0.001506
## factor(Reactor_Type)PHWR 1.038279 0.838072 1.239 0.216671
## factor(Reactor_Type)PWR -0.262227 0.330372 -0.794 0.428183
## Gross_Capacity_MWe -0.006439 0.004438 -1.451 0.148148
## Thermal_Capacity_MWt 0.003011 0.001522 1.978 0.049146
## Efficiency_Percentage 0.117454 0.092123 1.275 0.203628
## Starting_Year -0.088721 0.058615 -1.514 0.131521
## Duration 0.085829 0.038044 2.256 0.025025
## Average_Inflation_Percentage -0.048948 0.152866 -0.320 0.749112
## Average_Concrete_Price 0.026696 0.014262 1.872 0.062532
## Average_Steel_Price 0.010390 0.011638 0.893 0.372943
##
## (Intercept)
## factor(Country)BELARUS **
## factor(Country)BRAZIL
## factor(Country)CANADA
## factor(Country)CHINA
## factor(Country)CZECH REPUBLIC
## factor(Country)FRANCE
## factor(Country)GERMANY
## factor(Country)INDIA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF *
## factor(Country)JAPAN
## factor(Country)KOREA, REPUBLIC OF
## factor(Country)MEXICO
## factor(Country)PAKISTAN
## factor(Country)RUSSIA
## factor(Country)SLOVAKIA
## factor(Country)SWEDEN
## factor(Country)SWITZERLAND
## factor(Country)UNITED ARAB EMIRATES
## factor(Country)UNITED KINGDOM
## factor(Country)UNITED STATES OF AMERICA
## factor(Reactor_Type)FBR **
## factor(Reactor_Type)GCR
## factor(Reactor_Type)HTGR ***
## factor(Reactor_Type)LWGR **
## factor(Reactor_Type)PHWR
## factor(Reactor_Type)PWR
## Gross_Capacity_MWe
## Thermal_Capacity_MWt *
## Efficiency_Percentage
## Starting_Year
## Duration *
## Average_Inflation_Percentage
## Average_Concrete_Price .
## Average_Steel_Price
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Residual standard error: 1.691 on 226 degrees of freedom
## Multiple R-squared: 0.5469, Adjusted R-squared: 0.4787
## F-statistic: 8.023 on 34 and 226 DF, p-value: < 2.2e-16
Pre-Screening Process
Multicollinearity
multicollinearity.nuclear.regression.model<-lm(Cost_Billion_Dollars~Gross_Capacity_MWe+Thermal_Capacity_MWt+Efficiency_Percentage+Starting_Year+Duration+Average_Inflation_Percentage+Average_Concrete_Price+Average_Steel_Price, data = nuclear.df) # Model with all variables except for the categorical variables.
# Calculating VIF for Multicollinearity model
imcdiag(multicollinearity.nuclear.regression.model, method="VIF")
##
## Call:
## imcdiag(mod = multicollinearity.nuclear.regression.model, method = "VIF")
##
##
## VIF Multicollinearity Diagnostics
##
## VIF detection
## Gross_Capacity_MWe 126.0471 1
## Thermal_Capacity_MWt 114.5285 1
## Efficiency_Percentage 2.1803 0
## Starting_Year 48.0230 1
## Duration 1.7462 0
## Average_Inflation_Percentage 1.0866 0
## Average_Concrete_Price 78.4207 1
## Average_Steel_Price 52.4073 1
##
## Multicollinearity may be due to Gross_Capacity_MWe Thermal_Capacity_MWt Starting_Year Average_Concrete_Price Average_Steel_Price regressors
##
## 1 --> COLLINEARITY is detected by the test
## 0 --> COLLINEARITY is not detected by the test
##
## ===================================
print("We have detected collinearity between several variables, We must first concentrate on those 2 variables with the highest VIF value, i.e. Gross_Capacity_MWe AND Thermal_Capacity_MWt and remove one of them.")
## [1] "We have detected collinearity between several variables, We must first concentrate on those 2 variables with the highest VIF value, i.e. Gross_Capacity_MWe AND Thermal_Capacity_MWt and remove one of them."
# Scatter Plot between the 2 highest predictor variables.
pairs(~Gross_Capacity_MWe + Thermal_Capacity_MWt, data=nuclear.df)

# First checking for the correlation between "Cost" response variable and all the predictor variables using GG Pairs.
# We shall now check all pairwise combinations of predictors and look at the correlation between them using GGPairs().
nuclear.df.subset<-data.frame(nuclear.df$Cost_Billion_Dollars, nuclear.df$Gross_Capacity_MWe, nuclear.df$Thermal_Capacity_MWt, nuclear.df$Efficiency_Percentage, nuclear.df$Starting_Year, nuclear.df$Duration, nuclear.df$Average_Inflation_Percentage, nuclear.df$Average_Concrete_Price, nuclear.df$Average_Steel_Price)
head(nuclear.df.subset,5)
## nuclear.df.Cost_Billion_Dollars nuclear.df.Gross_Capacity_MWe
## 1 1.261 903
## 2 1.261 1065
## 3 4.260 959
## 4 4.260 958
## 5 0.027 71
## nuclear.df.Thermal_Capacity_MWt nuclear.df.Efficiency_Percentage
## 1 2568 35.16
## 2 3026 35.19
## 3 2900 33.07
## 4 2900 33.03
## 5 240 29.58
## nuclear.df.Starting_Year nuclear.df.Duration
## 1 1968 6
## 2 1968 10
## 3 1970 6
## 4 1974 13
## 5 1960 2
## nuclear.df.Average_Inflation_Percentage nuclear.df.Average_Concrete_Price
## 1 0.0488 37.12333
## 2 0.0616 41.70000
## 3 0.0660 44.66237
## 4 0.0721 83.84615
## 5 0.0126 30.00000
## nuclear.df.Average_Steel_Price
## 1 34.33333
## 2 44.70000
## 3 42.66667
## 4 84.38462
## 5 28.00000
tail(nuclear.df.subset,5)
## nuclear.df.Cost_Billion_Dollars nuclear.df.Gross_Capacity_MWe
## 257 1.7 1086
## 258 1.7 1086
## 259 1.7 1086
## 260 1.7 1086
## 261 1.7 1086
## nuclear.df.Thermal_Capacity_MWt nuclear.df.Efficiency_Percentage
## 257 2905 37.38
## 258 2905 37.38
## 259 2905 37.38
## 260 2905 37.38
## 261 2905 37.38
## nuclear.df.Starting_Year nuclear.df.Duration
## 257 2009 6
## 258 2010 5
## 259 2012 4
## 260 2013 5
## 261 2014 5
## nuclear.df.Average_Inflation_Percentage nuclear.df.Average_Concrete_Price
## 257 1.67 222.44
## 258 1.68 223.21
## 259 1.12 233.59
## 260 1.52 247.36
## 261 1.55 256.62
## nuclear.df.Average_Steel_Price
## 257 222.22
## 258 228.59
## 259 216.35
## 260 215.14
## 261 214.44
ggpairs(nuclear.df.subset)

#LOESS or LOWESS: LOcally WEighted Scatter-plot Smoother
ggpairs(nuclear.df.subset, lower = list(continuous = "smooth_loess", combo =
"facethist", discrete = "facetbar", na = "na"))

Thermal Capacity Removal
print("From the result of GGPairs, we can see that Correlation between 'Cost' variable and 'Gross Capacity' variable (0.436) is larger than correlation between 'Cost' variable and 'Thermal Capacity' variable (0.423). Hence we shall remove 'Thermal Capacity' variable from dataset due to Multicollinearity.")
## [1] "From the result of GGPairs, we can see that Correlation between 'Cost' variable and 'Gross Capacity' variable (0.436) is larger than correlation between 'Cost' variable and 'Thermal Capacity' variable (0.423). Hence we shall remove 'Thermal Capacity' variable from dataset due to Multicollinearity."
# Doing Multicollinearity testing once again without Thermal Capacity Variable.
multicollinearity.nuclear.regression.model<-lm(Cost_Billion_Dollars~Gross_Capacity_MWe+Efficiency_Percentage+Starting_Year+Duration+Average_Inflation_Percentage+Average_Concrete_Price+Average_Steel_Price, data = nuclear.df)
# Calculating VIF for Multicollinearity model
imcdiag(multicollinearity.nuclear.regression.model, method="VIF")
##
## Call:
## imcdiag(mod = multicollinearity.nuclear.regression.model, method = "VIF")
##
##
## VIF Multicollinearity Diagnostics
##
## VIF detection
## Gross_Capacity_MWe 1.6770 0
## Efficiency_Percentage 1.6309 0
## Starting_Year 46.7577 1
## Duration 1.6575 0
## Average_Inflation_Percentage 1.0254 0
## Average_Concrete_Price 77.8593 1
## Average_Steel_Price 51.4576 1
##
## Multicollinearity may be due to Starting_Year Average_Concrete_Price Average_Steel_Price regressors
##
## 1 --> COLLINEARITY is detected by the test
## 0 --> COLLINEARITY is not detected by the test
##
## ===================================
print("We have detected collinearity between several variables, We must first concentrate on those 2 variables with the highest VIF value, i.e. Average_Concrete_Price AND Average_Steel_Price and remove one of them.")
## [1] "We have detected collinearity between several variables, We must first concentrate on those 2 variables with the highest VIF value, i.e. Average_Concrete_Price AND Average_Steel_Price and remove one of them."
# Scatter Plot between the 2 highest predictor variables.
pairs(~Average_Concrete_Price + Average_Steel_Price, data=nuclear.df)

# First checking for the correlation between "Cost" response variable and all the predictor variables using GG Pairs.
# We shall now check all pairwise combinations of predictors and look at the correlation between them using GGPairs().
nuclear.df.subset<-data.frame(nuclear.df$Cost_Billion_Dollars, nuclear.df$Gross_Capacity_MWe, nuclear.df$Efficiency_Percentage, nuclear.df$Starting_Year, nuclear.df$Duration, nuclear.df$Average_Inflation_Percentage, nuclear.df$Average_Concrete_Price, nuclear.df$Average_Steel_Price)
ggpairs(nuclear.df.subset)

#LOESS or LOWESS: LOcally WEighted Scatter-plot Smoother
ggpairs(nuclear.df.subset, lower = list(continuous = "smooth_loess", combo =
"facethist", discrete = "facetbar", na = "na"))

Average_Steel_Price Removal
print("From the result of GGPairs, we can see that Correlation between 'Cost' variable and 'Average_Concrete_Price' variable (0.276) is larger than correlation between 'Cost' variable and 'Average_Steel_Price' variable (0.266). Hence we shall remove 'Average_Steel_Price' variable from dataset due to Multicollinearity.")
## [1] "From the result of GGPairs, we can see that Correlation between 'Cost' variable and 'Average_Concrete_Price' variable (0.276) is larger than correlation between 'Cost' variable and 'Average_Steel_Price' variable (0.266). Hence we shall remove 'Average_Steel_Price' variable from dataset due to Multicollinearity."
# Doing Multicollinearity testing once again without Average_Steel_Price Variable.
multicollinearity.nuclear.regression.model<-lm(Cost_Billion_Dollars~Gross_Capacity_MWe+Efficiency_Percentage+Starting_Year+Duration+Average_Inflation_Percentage+Average_Concrete_Price, data = nuclear.df)
# Calculating VIF for Multicollinearity model
imcdiag(multicollinearity.nuclear.regression.model, method="VIF")
##
## Call:
## imcdiag(mod = multicollinearity.nuclear.regression.model, method = "VIF")
##
##
## VIF Multicollinearity Diagnostics
##
## VIF detection
## Gross_Capacity_MWe 1.6767 0
## Efficiency_Percentage 1.6247 0
## Starting_Year 44.9093 1
## Duration 1.6144 0
## Average_Inflation_Percentage 1.0214 0
## Average_Concrete_Price 45.1784 1
##
## Multicollinearity may be due to Starting_Year Average_Concrete_Price regressors
##
## 1 --> COLLINEARITY is detected by the test
## 0 --> COLLINEARITY is not detected by the test
##
## ===================================
print("We have detected collinearity between 'Starting_Year' and 'Average_Concrete_Price'. We must therefore remove one of them.")
## [1] "We have detected collinearity between 'Starting_Year' and 'Average_Concrete_Price'. We must therefore remove one of them."
# Scatter Plot between the 2 highest predictor variables.
pairs(~Average_Concrete_Price + Starting_Year, data=nuclear.df)

# First checking for the correlation between "Cost" response variable and all the predictor variables using GG Pairs.
# We shall now check all pairwise combinations of predictors and look at the correlation between them using GGPairs().
nuclear.df.subset<-data.frame(nuclear.df$Cost_Billion_Dollars, nuclear.df$Gross_Capacity_MWe, nuclear.df$Efficiency_Percentage, nuclear.df$Starting_Year, nuclear.df$Duration, nuclear.df$Average_Inflation_Percentage, nuclear.df$Average_Concrete_Price)
ggpairs(nuclear.df.subset)

#LOESS or LOWESS: LOcally WEighted Scatter-plot Smoother
ggpairs(nuclear.df.subset, lower = list(continuous = "smooth_loess", combo =
"facethist", discrete = "facetbar", na = "na"))

Starting_Year Removal
print("From the result of GGPairs, we can see that Correlation between 'Cost' variable and 'Average_Concrete_Price' variable (0.276) is larger than correlation between 'Cost' variable and 'Starting_Year' variable (0.212). Hence we shall remove 'Starting_Year' variable from dataset due to Multicollinearity.")
## [1] "From the result of GGPairs, we can see that Correlation between 'Cost' variable and 'Average_Concrete_Price' variable (0.276) is larger than correlation between 'Cost' variable and 'Starting_Year' variable (0.212). Hence we shall remove 'Starting_Year' variable from dataset due to Multicollinearity."
# Doing Multicollinearity testing once again without Starting_Year Variable.
multicollinearity.nuclear.regression.model<-lm(Cost_Billion_Dollars~Gross_Capacity_MWe+Efficiency_Percentage+Duration+Average_Inflation_Percentage+Average_Concrete_Price, data = nuclear.df)
# Calculating VIF for Multicollinearity model
imcdiag(multicollinearity.nuclear.regression.model, method="VIF")
##
## Call:
## imcdiag(mod = multicollinearity.nuclear.regression.model, method = "VIF")
##
##
## VIF Multicollinearity Diagnostics
##
## VIF detection
## Gross_Capacity_MWe 1.6346 0
## Efficiency_Percentage 1.6150 0
## Duration 1.0928 0
## Average_Inflation_Percentage 1.0212 0
## Average_Concrete_Price 1.1643 0
##
## NOTE: VIF Method Failed to detect multicollinearity
##
##
## 0 --> COLLINEARITY is not detected by the test
##
## ===================================
print("No more multicollinearity now exists in our dataset.")
## [1] "No more multicollinearity now exists in our dataset."
# Our new regression model: -
new.nuclear.regression.model<-lm(Cost_Billion_Dollars~factor(Country)+factor(Reactor_Type)+Gross_Capacity_MWe+Efficiency_Percentage+Duration+Average_Inflation_Percentage+Average_Concrete_Price, data = nuclear.df)
summary(new.nuclear.regression.model)
##
## Call:
## lm(formula = Cost_Billion_Dollars ~ factor(Country) + factor(Reactor_Type) +
## Gross_Capacity_MWe + Efficiency_Percentage + Duration + Average_Inflation_Percentage +
## Average_Concrete_Price, data = nuclear.df)
##
## Residuals:
## Min 1Q Median 3Q Max
## -4.6474 -0.7143 -0.2115 0.3680 12.9150
##
## Coefficients:
## Estimate Std. Error t value Pr(>|t|)
## (Intercept) -2.7623250 2.8584589 -0.966 0.334879
## factor(Country)BELARUS 6.4153915 2.2179348 2.893 0.004190
## factor(Country)BRAZIL -0.1725113 1.7333795 -0.100 0.920810
## factor(Country)CANADA -0.2327857 1.0854687 -0.214 0.830382
## factor(Country)CHINA -1.2557963 1.3852618 -0.907 0.365603
## factor(Country)CZECH REPUBLIC -0.3248797 1.6293266 -0.199 0.842131
## factor(Country)FRANCE -0.2200444 1.7299781 -0.127 0.898898
## factor(Country)GERMANY -1.6367134 1.9382348 -0.844 0.399308
## factor(Country)INDIA -1.0146647 1.4563621 -0.697 0.486690
## factor(Country)IRAN, ISLAMIC REPUBLIC OF 5.3265700 2.3093026 2.307 0.021973
## factor(Country)JAPAN 1.4327543 1.6653309 0.860 0.390500
## factor(Country)KOREA, REPUBLIC OF -1.5780894 1.8018997 -0.876 0.382061
## factor(Country)MEXICO -1.3609685 2.2572590 -0.603 0.547152
## factor(Country)PAKISTAN 0.0722838 1.6355369 0.044 0.964787
## factor(Country)RUSSIA -1.6645549 1.5649162 -1.064 0.288598
## factor(Country)SLOVAKIA 1.2200979 1.8905248 0.645 0.519330
## factor(Country)SWEDEN 1.0964014 2.4765848 0.443 0.658396
## factor(Country)SWITZERLAND 0.8938187 2.2945462 0.390 0.697238
## factor(Country)UNITED ARAB EMIRATES 0.9337536 1.8401512 0.507 0.612339
## factor(Country)UNITED KINGDOM -0.6008296 2.6049718 -0.231 0.817795
## factor(Country)UNITED STATES OF AMERICA 1.2968284 1.5488197 0.837 0.403296
## factor(Reactor_Type)FBR 2.7749328 0.8887917 3.122 0.002027
## factor(Reactor_Type)GCR 2.6120906 2.5767730 1.014 0.311793
## factor(Reactor_Type)HTGR 4.2552821 1.1542318 3.687 0.000284
## factor(Reactor_Type)LWGR 3.3186993 1.3381155 2.480 0.013854
## factor(Reactor_Type)PHWR 0.4335282 0.7963439 0.544 0.586697
## factor(Reactor_Type)PWR -0.3536701 0.3282572 -1.077 0.282427
## Gross_Capacity_MWe 0.0020958 0.0005394 3.885 0.000134
## Efficiency_Percentage -0.0003305 0.0706254 -0.005 0.996270
## Duration 0.1261406 0.0309366 4.077 6.29e-05
## Average_Inflation_Percentage -0.0037520 0.1514012 -0.025 0.980251
## Average_Concrete_Price 0.0169301 0.0038084 4.445 1.37e-05
##
## (Intercept)
## factor(Country)BELARUS **
## factor(Country)BRAZIL
## factor(Country)CANADA
## factor(Country)CHINA
## factor(Country)CZECH REPUBLIC
## factor(Country)FRANCE
## factor(Country)GERMANY
## factor(Country)INDIA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF *
## factor(Country)JAPAN
## factor(Country)KOREA, REPUBLIC OF
## factor(Country)MEXICO
## factor(Country)PAKISTAN
## factor(Country)RUSSIA
## factor(Country)SLOVAKIA
## factor(Country)SWEDEN
## factor(Country)SWITZERLAND
## factor(Country)UNITED ARAB EMIRATES
## factor(Country)UNITED KINGDOM
## factor(Country)UNITED STATES OF AMERICA
## factor(Reactor_Type)FBR **
## factor(Reactor_Type)GCR
## factor(Reactor_Type)HTGR ***
## factor(Reactor_Type)LWGR *
## factor(Reactor_Type)PHWR
## factor(Reactor_Type)PWR
## Gross_Capacity_MWe ***
## Efficiency_Percentage
## Duration ***
## Average_Inflation_Percentage
## Average_Concrete_Price ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Residual standard error: 1.699 on 229 degrees of freedom
## Multiple R-squared: 0.5366, Adjusted R-squared: 0.4739
## F-statistic: 8.553 on 31 and 229 DF, p-value: < 2.2e-16
Global F-Test
#We ask the global question, Is this multiple regression model any good at all?? The answer is that we can test some hypotheses to see the relationship between the response and predictors. The first of these hypotheses is an overall F-test or a global F test which tells us if the multiple regression model is useful. To address the overall question, we will test
# H0 : β1=β2=...=β7=0
# Ha : At least one βi is not zero (i=1,2,...,7)
# Our null hypothesis basically means that all of our supposedly Independent variables are junk food and not useful at all.
# Our Alternative Hypothesis means that at least one of the independent variable is useful in our model.
# We therefore shall now do ANOVA testing.
new.nuclear.regression.model<-lm(Cost_Billion_Dollars~factor(Country)+factor(Reactor_Type)+Gross_Capacity_MWe+Efficiency_Percentage+Duration+Average_Inflation_Percentage+Average_Concrete_Price, data = nuclear.df) # (Full) model with all variables
new.nuclear.regression.model.intercept<-lm(Cost_Billion_Dollars~1, data=nuclear.df) # Model with only intercept
anova(new.nuclear.regression.model.intercept, new.nuclear.regression.model) # We compare the NULL model with the full model.
## Analysis of Variance Table
##
## Model 1: Cost_Billion_Dollars ~ 1
## Model 2: Cost_Billion_Dollars ~ factor(Country) + factor(Reactor_Type) +
## Gross_Capacity_MWe + Efficiency_Percentage + Duration + Average_Inflation_Percentage +
## Average_Concrete_Price
## Res.Df RSS Df Sum of Sq F Pr(>F)
## 1 260 1425.9
## 2 229 660.8 31 765.14 8.5535 < 2.2e-16 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
# Since the p-value of the anova table is <0.05, it means that the null hypotheses has to be rejected.
# This means that at least one independent variable in our model is NOT junk.
Step-wise Regression Procedure
# We shall now do Step-wise Regression Procedure in order to know the significant variables in our regression model.
new.nuclear.regression.model<-lm(Cost_Billion_Dollars~factor(Country)+factor(Reactor_Type)+Gross_Capacity_MWe+Efficiency_Percentage+Duration+Average_Inflation_Percentage+Average_Concrete_Price, data = nuclear.df)
step.model = ols_step_both_p(new.nuclear.regression.model,pent = 0.1, prem = 0.3, details=FALSE)
summary(step.model$model)
##
## Call:
## lm(formula = paste(response, "~", paste(preds, collapse = " + ")),
## data = l)
##
## Residuals:
## Min 1Q Median 3Q Max
## -4.6475 -0.7142 -0.2111 0.3668 12.9146
##
## Coefficients:
## Estimate Std. Error t value Pr(>|t|)
## (Intercept) -2.7938797 1.3512326 -2.068 0.039787
## Gross_Capacity_MWe 0.0020936 0.0004547 4.604 6.84e-06
## Duration 0.1262221 0.0304087 4.151 4.66e-05
## factor(Reactor_Type)FBR 2.7720653 0.7646800 3.625 0.000355
## factor(Reactor_Type)GCR 2.6088211 2.5049226 1.041 0.298743
## factor(Reactor_Type)HTGR 4.2519314 1.0060365 4.226 3.42e-05
## factor(Reactor_Type)LWGR 3.3222633 1.1326536 2.933 0.003693
## factor(Reactor_Type)PHWR 0.4324542 0.7837630 0.552 0.581642
## factor(Reactor_Type)PWR -0.3540174 0.3264031 -1.085 0.279229
## factor(Country)BELARUS 6.4296282 2.1331251 3.014 0.002864
## factor(Country)BRAZIL -0.1762454 1.7185068 -0.103 0.918403
## factor(Country)CANADA -0.2332003 1.0775717 -0.216 0.828857
## factor(Country)CHINA -1.2429738 1.2795003 -0.971 0.332339
## factor(Country)CZECH REPUBLIC -0.3046056 1.4034758 -0.217 0.828371
## factor(Country)FRANCE -0.1984772 1.4885328 -0.133 0.894043
## factor(Country)GERMANY -1.6148065 1.7114264 -0.944 0.346388
## factor(Country)INDIA -0.9927662 1.1377272 -0.873 0.383794
## factor(Country)IRAN, ISLAMIC REPUBLIC OF 5.3456970 2.1673233 2.466 0.014372
## factor(Country)JAPAN 1.4541742 1.4162270 1.027 0.305591
## factor(Country)KOREA, REPUBLIC OF -1.5578890 1.6009919 -0.973 0.331533
## factor(Country)MEXICO -1.3409607 2.0991539 -0.639 0.523579
## factor(Country)PAKISTAN 0.0928120 1.4050020 0.066 0.947389
## factor(Country)RUSSIA -1.6437614 1.3095038 -1.255 0.210654
## factor(Country)SLOVAKIA 1.2396967 1.7092006 0.725 0.468997
## factor(Country)SWEDEN 1.1233526 1.9769750 0.568 0.570439
## factor(Country)SWITZERLAND 0.9148124 2.1234941 0.431 0.667012
## factor(Country)UNITED ARAB EMIRATES 0.9546094 1.6242755 0.588 0.557298
## factor(Country)UNITED KINGDOM -0.5751948 2.2202361 -0.259 0.795813
## factor(Country)UNITED STATES OF AMERICA 1.3183117 1.2769329 1.032 0.302962
## Average_Concrete_Price 0.0169368 0.0037746 4.487 1.14e-05
##
## (Intercept) *
## Gross_Capacity_MWe ***
## Duration ***
## factor(Reactor_Type)FBR ***
## factor(Reactor_Type)GCR
## factor(Reactor_Type)HTGR ***
## factor(Reactor_Type)LWGR **
## factor(Reactor_Type)PHWR
## factor(Reactor_Type)PWR
## factor(Country)BELARUS **
## factor(Country)BRAZIL
## factor(Country)CANADA
## factor(Country)CHINA
## factor(Country)CZECH REPUBLIC
## factor(Country)FRANCE
## factor(Country)GERMANY
## factor(Country)INDIA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF *
## factor(Country)JAPAN
## factor(Country)KOREA, REPUBLIC OF
## factor(Country)MEXICO
## factor(Country)PAKISTAN
## factor(Country)RUSSIA
## factor(Country)SLOVAKIA
## factor(Country)SWEDEN
## factor(Country)SWITZERLAND
## factor(Country)UNITED ARAB EMIRATES
## factor(Country)UNITED KINGDOM
## factor(Country)UNITED STATES OF AMERICA
## Average_Concrete_Price ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Residual standard error: 1.691 on 231 degrees of freedom
## Multiple R-squared: 0.5366, Adjusted R-squared: 0.4784
## F-statistic: 9.223 on 29 and 231 DF, p-value: < 2.2e-16
print("According to Step-wise procedure, the most significant variable in our model is 'Gross_Capacity_MWe' variable. We shall now do Backward Regression Procedure in order to know the least significant variable in our dataset.")
## [1] "According to Step-wise procedure, the most significant variable in our model is 'Gross_Capacity_MWe' variable. We shall now do Backward Regression Procedure in order to know the least significant variable in our dataset."
Backward Regression Procedure
# We shall now do Backward Regression Procedure in order to know the significant variables in our regression model.
backward.model=ols_step_backward_p(new.nuclear.regression.model, prem = 0.05, details=FALSE)
summary(backward.model$model)
##
## Call:
## lm(formula = paste(response, "~", paste(preds, collapse = " + ")),
## data = l)
##
## Residuals:
## Min 1Q Median 3Q Max
## -4.6475 -0.7142 -0.2111 0.3668 12.9146
##
## Coefficients:
## Estimate Std. Error t value Pr(>|t|)
## (Intercept) -2.7938797 1.3512326 -2.068 0.039787
## factor(Country)BELARUS 6.4296282 2.1331251 3.014 0.002864
## factor(Country)BRAZIL -0.1762454 1.7185068 -0.103 0.918403
## factor(Country)CANADA -0.2332003 1.0775717 -0.216 0.828857
## factor(Country)CHINA -1.2429738 1.2795003 -0.971 0.332339
## factor(Country)CZECH REPUBLIC -0.3046056 1.4034758 -0.217 0.828371
## factor(Country)FRANCE -0.1984772 1.4885328 -0.133 0.894043
## factor(Country)GERMANY -1.6148065 1.7114264 -0.944 0.346388
## factor(Country)INDIA -0.9927662 1.1377272 -0.873 0.383794
## factor(Country)IRAN, ISLAMIC REPUBLIC OF 5.3456970 2.1673233 2.466 0.014372
## factor(Country)JAPAN 1.4541742 1.4162270 1.027 0.305591
## factor(Country)KOREA, REPUBLIC OF -1.5578890 1.6009919 -0.973 0.331533
## factor(Country)MEXICO -1.3409607 2.0991539 -0.639 0.523579
## factor(Country)PAKISTAN 0.0928120 1.4050020 0.066 0.947389
## factor(Country)RUSSIA -1.6437614 1.3095038 -1.255 0.210654
## factor(Country)SLOVAKIA 1.2396967 1.7092006 0.725 0.468997
## factor(Country)SWEDEN 1.1233526 1.9769750 0.568 0.570439
## factor(Country)SWITZERLAND 0.9148124 2.1234941 0.431 0.667012
## factor(Country)UNITED ARAB EMIRATES 0.9546094 1.6242755 0.588 0.557298
## factor(Country)UNITED KINGDOM -0.5751948 2.2202361 -0.259 0.795813
## factor(Country)UNITED STATES OF AMERICA 1.3183117 1.2769329 1.032 0.302962
## factor(Reactor_Type)FBR 2.7720653 0.7646800 3.625 0.000355
## factor(Reactor_Type)GCR 2.6088211 2.5049226 1.041 0.298743
## factor(Reactor_Type)HTGR 4.2519314 1.0060365 4.226 3.42e-05
## factor(Reactor_Type)LWGR 3.3222633 1.1326536 2.933 0.003693
## factor(Reactor_Type)PHWR 0.4324542 0.7837630 0.552 0.581642
## factor(Reactor_Type)PWR -0.3540174 0.3264031 -1.085 0.279229
## Gross_Capacity_MWe 0.0020936 0.0004547 4.604 6.84e-06
## Duration 0.1262221 0.0304087 4.151 4.66e-05
## Average_Concrete_Price 0.0169368 0.0037746 4.487 1.14e-05
##
## (Intercept) *
## factor(Country)BELARUS **
## factor(Country)BRAZIL
## factor(Country)CANADA
## factor(Country)CHINA
## factor(Country)CZECH REPUBLIC
## factor(Country)FRANCE
## factor(Country)GERMANY
## factor(Country)INDIA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF *
## factor(Country)JAPAN
## factor(Country)KOREA, REPUBLIC OF
## factor(Country)MEXICO
## factor(Country)PAKISTAN
## factor(Country)RUSSIA
## factor(Country)SLOVAKIA
## factor(Country)SWEDEN
## factor(Country)SWITZERLAND
## factor(Country)UNITED ARAB EMIRATES
## factor(Country)UNITED KINGDOM
## factor(Country)UNITED STATES OF AMERICA
## factor(Reactor_Type)FBR ***
## factor(Reactor_Type)GCR
## factor(Reactor_Type)HTGR ***
## factor(Reactor_Type)LWGR **
## factor(Reactor_Type)PHWR
## factor(Reactor_Type)PWR
## Gross_Capacity_MWe ***
## Duration ***
## Average_Concrete_Price ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Residual standard error: 1.691 on 231 degrees of freedom
## Multiple R-squared: 0.5366, Adjusted R-squared: 0.4784
## F-statistic: 9.223 on 29 and 231 DF, p-value: < 2.2e-16
print("According to backward procedure, the most insignificant variable in our model was 'Efficiency_Percentage' variable.")
## [1] "According to backward procedure, the most insignificant variable in our model was 'Efficiency_Percentage' variable."
print("The common significant variables, both in Step-wise and Backward procedure are: - Gross_Capacity_MWe, Duration, Average_Concrete_Price, Reactor_Type and Country. We shall now do Individual Coefficient Test (T-test) in order to finally know our significant variables and make our first order model.")
## [1] "The common significant variables, both in Step-wise and Backward procedure are: - Gross_Capacity_MWe, Duration, Average_Concrete_Price, Reactor_Type and Country. We shall now do Individual Coefficient Test (T-test) in order to finally know our significant variables and make our first order model."
Individual T-test
# Performing Individual T-test
# We shall now use Individual Coefficients Test (t-test) to find out the best model for our use.
# In Partial test, we do t-test and then we look at the p-value.
# Here the null hypothesis is H0 : :βi=0
# Alternative hypothesis is Ha : βi≠0 (i=1,2,....,7)
new.nuclear.regression.model<-lm(Cost_Billion_Dollars~factor(Country)+factor(Reactor_Type)+Gross_Capacity_MWe+Efficiency_Percentage+Duration+Average_Inflation_Percentage+Average_Concrete_Price, data = nuclear.df)
summary(new.nuclear.regression.model)
##
## Call:
## lm(formula = Cost_Billion_Dollars ~ factor(Country) + factor(Reactor_Type) +
## Gross_Capacity_MWe + Efficiency_Percentage + Duration + Average_Inflation_Percentage +
## Average_Concrete_Price, data = nuclear.df)
##
## Residuals:
## Min 1Q Median 3Q Max
## -4.6474 -0.7143 -0.2115 0.3680 12.9150
##
## Coefficients:
## Estimate Std. Error t value Pr(>|t|)
## (Intercept) -2.7623250 2.8584589 -0.966 0.334879
## factor(Country)BELARUS 6.4153915 2.2179348 2.893 0.004190
## factor(Country)BRAZIL -0.1725113 1.7333795 -0.100 0.920810
## factor(Country)CANADA -0.2327857 1.0854687 -0.214 0.830382
## factor(Country)CHINA -1.2557963 1.3852618 -0.907 0.365603
## factor(Country)CZECH REPUBLIC -0.3248797 1.6293266 -0.199 0.842131
## factor(Country)FRANCE -0.2200444 1.7299781 -0.127 0.898898
## factor(Country)GERMANY -1.6367134 1.9382348 -0.844 0.399308
## factor(Country)INDIA -1.0146647 1.4563621 -0.697 0.486690
## factor(Country)IRAN, ISLAMIC REPUBLIC OF 5.3265700 2.3093026 2.307 0.021973
## factor(Country)JAPAN 1.4327543 1.6653309 0.860 0.390500
## factor(Country)KOREA, REPUBLIC OF -1.5780894 1.8018997 -0.876 0.382061
## factor(Country)MEXICO -1.3609685 2.2572590 -0.603 0.547152
## factor(Country)PAKISTAN 0.0722838 1.6355369 0.044 0.964787
## factor(Country)RUSSIA -1.6645549 1.5649162 -1.064 0.288598
## factor(Country)SLOVAKIA 1.2200979 1.8905248 0.645 0.519330
## factor(Country)SWEDEN 1.0964014 2.4765848 0.443 0.658396
## factor(Country)SWITZERLAND 0.8938187 2.2945462 0.390 0.697238
## factor(Country)UNITED ARAB EMIRATES 0.9337536 1.8401512 0.507 0.612339
## factor(Country)UNITED KINGDOM -0.6008296 2.6049718 -0.231 0.817795
## factor(Country)UNITED STATES OF AMERICA 1.2968284 1.5488197 0.837 0.403296
## factor(Reactor_Type)FBR 2.7749328 0.8887917 3.122 0.002027
## factor(Reactor_Type)GCR 2.6120906 2.5767730 1.014 0.311793
## factor(Reactor_Type)HTGR 4.2552821 1.1542318 3.687 0.000284
## factor(Reactor_Type)LWGR 3.3186993 1.3381155 2.480 0.013854
## factor(Reactor_Type)PHWR 0.4335282 0.7963439 0.544 0.586697
## factor(Reactor_Type)PWR -0.3536701 0.3282572 -1.077 0.282427
## Gross_Capacity_MWe 0.0020958 0.0005394 3.885 0.000134
## Efficiency_Percentage -0.0003305 0.0706254 -0.005 0.996270
## Duration 0.1261406 0.0309366 4.077 6.29e-05
## Average_Inflation_Percentage -0.0037520 0.1514012 -0.025 0.980251
## Average_Concrete_Price 0.0169301 0.0038084 4.445 1.37e-05
##
## (Intercept)
## factor(Country)BELARUS **
## factor(Country)BRAZIL
## factor(Country)CANADA
## factor(Country)CHINA
## factor(Country)CZECH REPUBLIC
## factor(Country)FRANCE
## factor(Country)GERMANY
## factor(Country)INDIA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF *
## factor(Country)JAPAN
## factor(Country)KOREA, REPUBLIC OF
## factor(Country)MEXICO
## factor(Country)PAKISTAN
## factor(Country)RUSSIA
## factor(Country)SLOVAKIA
## factor(Country)SWEDEN
## factor(Country)SWITZERLAND
## factor(Country)UNITED ARAB EMIRATES
## factor(Country)UNITED KINGDOM
## factor(Country)UNITED STATES OF AMERICA
## factor(Reactor_Type)FBR **
## factor(Reactor_Type)GCR
## factor(Reactor_Type)HTGR ***
## factor(Reactor_Type)LWGR *
## factor(Reactor_Type)PHWR
## factor(Reactor_Type)PWR
## Gross_Capacity_MWe ***
## Efficiency_Percentage
## Duration ***
## Average_Inflation_Percentage
## Average_Concrete_Price ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Residual standard error: 1.699 on 229 degrees of freedom
## Multiple R-squared: 0.5366, Adjusted R-squared: 0.4739
## F-statistic: 8.553 on 31 and 229 DF, p-value: < 2.2e-16
print("From our Individual T-test, we can see that Country, Reactor_Type, Gross_Capacity_MWe, Duration, and Average_Concrete_Price are the only significant variables in our regression model, as confirmed by Step-Wise and Backward procedure. Efficiency_Percentage and Average_Inflation_Percentage variables are insignificant variables, therefore we shall remove them.")
## [1] "From our Individual T-test, we can see that Country, Reactor_Type, Gross_Capacity_MWe, Duration, and Average_Concrete_Price are the only significant variables in our regression model, as confirmed by Step-Wise and Backward procedure. Efficiency_Percentage and Average_Inflation_Percentage variables are insignificant variables, therefore we shall remove them."
Additive Model
# Making our reduced model. We are now removing Efficiency_Percentage and Average_Inflation_Percentage.
new.nuclear.regression.model.reduced<-lm(Cost_Billion_Dollars~factor(Country)+factor(Reactor_Type)+Gross_Capacity_MWe+Duration+Average_Concrete_Price, data = nuclear.df)
summary(new.nuclear.regression.model.reduced)
##
## Call:
## lm(formula = Cost_Billion_Dollars ~ factor(Country) + factor(Reactor_Type) +
## Gross_Capacity_MWe + Duration + Average_Concrete_Price, data = nuclear.df)
##
## Residuals:
## Min 1Q Median 3Q Max
## -4.6475 -0.7142 -0.2111 0.3668 12.9146
##
## Coefficients:
## Estimate Std. Error t value Pr(>|t|)
## (Intercept) -2.7938797 1.3512326 -2.068 0.039787
## factor(Country)BELARUS 6.4296282 2.1331251 3.014 0.002864
## factor(Country)BRAZIL -0.1762454 1.7185068 -0.103 0.918403
## factor(Country)CANADA -0.2332003 1.0775717 -0.216 0.828857
## factor(Country)CHINA -1.2429738 1.2795003 -0.971 0.332339
## factor(Country)CZECH REPUBLIC -0.3046056 1.4034758 -0.217 0.828371
## factor(Country)FRANCE -0.1984772 1.4885328 -0.133 0.894043
## factor(Country)GERMANY -1.6148065 1.7114264 -0.944 0.346388
## factor(Country)INDIA -0.9927662 1.1377272 -0.873 0.383794
## factor(Country)IRAN, ISLAMIC REPUBLIC OF 5.3456970 2.1673233 2.466 0.014372
## factor(Country)JAPAN 1.4541742 1.4162270 1.027 0.305591
## factor(Country)KOREA, REPUBLIC OF -1.5578890 1.6009919 -0.973 0.331533
## factor(Country)MEXICO -1.3409607 2.0991539 -0.639 0.523579
## factor(Country)PAKISTAN 0.0928120 1.4050020 0.066 0.947389
## factor(Country)RUSSIA -1.6437614 1.3095038 -1.255 0.210654
## factor(Country)SLOVAKIA 1.2396967 1.7092006 0.725 0.468997
## factor(Country)SWEDEN 1.1233526 1.9769750 0.568 0.570439
## factor(Country)SWITZERLAND 0.9148124 2.1234941 0.431 0.667012
## factor(Country)UNITED ARAB EMIRATES 0.9546094 1.6242755 0.588 0.557298
## factor(Country)UNITED KINGDOM -0.5751948 2.2202361 -0.259 0.795813
## factor(Country)UNITED STATES OF AMERICA 1.3183117 1.2769329 1.032 0.302962
## factor(Reactor_Type)FBR 2.7720653 0.7646800 3.625 0.000355
## factor(Reactor_Type)GCR 2.6088211 2.5049226 1.041 0.298743
## factor(Reactor_Type)HTGR 4.2519314 1.0060365 4.226 3.42e-05
## factor(Reactor_Type)LWGR 3.3222633 1.1326536 2.933 0.003693
## factor(Reactor_Type)PHWR 0.4324542 0.7837630 0.552 0.581642
## factor(Reactor_Type)PWR -0.3540174 0.3264031 -1.085 0.279229
## Gross_Capacity_MWe 0.0020936 0.0004547 4.604 6.84e-06
## Duration 0.1262221 0.0304087 4.151 4.66e-05
## Average_Concrete_Price 0.0169368 0.0037746 4.487 1.14e-05
##
## (Intercept) *
## factor(Country)BELARUS **
## factor(Country)BRAZIL
## factor(Country)CANADA
## factor(Country)CHINA
## factor(Country)CZECH REPUBLIC
## factor(Country)FRANCE
## factor(Country)GERMANY
## factor(Country)INDIA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF *
## factor(Country)JAPAN
## factor(Country)KOREA, REPUBLIC OF
## factor(Country)MEXICO
## factor(Country)PAKISTAN
## factor(Country)RUSSIA
## factor(Country)SLOVAKIA
## factor(Country)SWEDEN
## factor(Country)SWITZERLAND
## factor(Country)UNITED ARAB EMIRATES
## factor(Country)UNITED KINGDOM
## factor(Country)UNITED STATES OF AMERICA
## factor(Reactor_Type)FBR ***
## factor(Reactor_Type)GCR
## factor(Reactor_Type)HTGR ***
## factor(Reactor_Type)LWGR **
## factor(Reactor_Type)PHWR
## factor(Reactor_Type)PWR
## Gross_Capacity_MWe ***
## Duration ***
## Average_Concrete_Price ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Residual standard error: 1.691 on 231 degrees of freedom
## Multiple R-squared: 0.5366, Adjusted R-squared: 0.4784
## F-statistic: 9.223 on 29 and 231 DF, p-value: < 2.2e-16
# Doing Partial F-Test using ANOVA.
new.nuclear.regression.model<-lm(Cost_Billion_Dollars~factor(Country)+factor(Reactor_Type)+Gross_Capacity_MWe+Efficiency_Percentage+Duration+Average_Inflation_Percentage+Average_Concrete_Price, data = nuclear.df)
new.nuclear.regression.model.reduced<-lm(Cost_Billion_Dollars~factor(Country)+factor(Reactor_Type)+Gross_Capacity_MWe+Duration+Average_Concrete_Price, data = nuclear.df) # Dropping all useless predictor variables.
anova(new.nuclear.regression.model.reduced,new.nuclear.regression.model) # test if Ho: <List of insignificant variables> = 0
## Analysis of Variance Table
##
## Model 1: Cost_Billion_Dollars ~ factor(Country) + factor(Reactor_Type) +
## Gross_Capacity_MWe + Duration + Average_Concrete_Price
## Model 2: Cost_Billion_Dollars ~ factor(Country) + factor(Reactor_Type) +
## Gross_Capacity_MWe + Efficiency_Percentage + Duration + Average_Inflation_Percentage +
## Average_Concrete_Price
## Res.Df RSS Df Sum of Sq F Pr(>F)
## 1 231 660.8
## 2 229 660.8 2 0.0017806 3e-04 0.9997
print("The Partial F test cleary states that we cannot reject the NULL hypothesis, therefore it was a correct decision to remove all junk predictor variables.")
## [1] "The Partial F test cleary states that we cannot reject the NULL hypothesis, therefore it was a correct decision to remove all junk predictor variables."
Interaction Model
# We shall now make our interaction model.
# We would be using Individual Coefficients Test (t-test) method.
# Here the null hypothesis is H0 : :βi=0
# Alternative hypothesis is Ha : βi≠0 (i=1,2,...,5)
interact.new.nuclear.regression.model.reduced<-lm(Cost_Billion_Dollars~(factor(Country)+factor(Reactor_Type)+Gross_Capacity_MWe+Duration+Average_Concrete_Price)^2, data = nuclear.df)
options(max.print=999999)
# Reference: - https://stackoverflow.com/a/6758748/10912105
summary(interact.new.nuclear.regression.model.reduced)
##
## Call:
## lm(formula = Cost_Billion_Dollars ~ (factor(Country) + factor(Reactor_Type) +
## Gross_Capacity_MWe + Duration + Average_Concrete_Price)^2,
## data = nuclear.df)
##
## Residuals:
## Min 1Q Median 3Q Max
## -5.1055 -0.2277 0.0000 0.1658 11.8531
##
## Coefficients: (146 not defined because of singularities)
## Estimate
## (Intercept) 1.897e+01
## factor(Country)BELARUS -1.679e+01
## factor(Country)BRAZIL -1.837e+01
## factor(Country)CANADA -1.906e+01
## factor(Country)CHINA -4.401e+00
## factor(Country)CZECH REPUBLIC -3.074e+01
## factor(Country)FRANCE -3.028e+02
## factor(Country)GERMANY -2.174e+01
## factor(Country)INDIA -1.071e+01
## factor(Country)IRAN, ISLAMIC REPUBLIC OF -9.747e+00
## factor(Country)JAPAN -1.355e+01
## factor(Country)KOREA, REPUBLIC OF -6.697e+00
## factor(Country)MEXICO -1.997e+01
## factor(Country)PAKISTAN 2.370e+01
## factor(Country)RUSSIA -4.313e+00
## factor(Country)SLOVAKIA -1.439e+01
## factor(Country)SWEDEN -2.553e+00
## factor(Country)SWITZERLAND -1.503e+01
## factor(Country)UNITED ARAB EMIRATES 1.387e+01
## factor(Country)UNITED KINGDOM -1.956e+01
## factor(Country)UNITED STATES OF AMERICA -1.978e+01
## factor(Reactor_Type)FBR -6.798e-01
## factor(Reactor_Type)GCR 1.157e+00
## factor(Reactor_Type)HTGR -2.643e-01
## factor(Reactor_Type)LWGR -1.451e+01
## factor(Reactor_Type)PHWR -1.779e+01
## factor(Reactor_Type)PWR 2.457e-01
## Gross_Capacity_MWe -6.552e-03
## Duration 2.594e-01
## Average_Concrete_Price 1.245e-02
## factor(Country)BELARUS:factor(Reactor_Type)FBR NA
## factor(Country)BRAZIL:factor(Reactor_Type)FBR NA
## factor(Country)CANADA:factor(Reactor_Type)FBR NA
## factor(Country)CHINA:factor(Reactor_Type)FBR -1.289e+01
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)FBR NA
## factor(Country)FRANCE:factor(Reactor_Type)FBR 6.921e+01
## factor(Country)GERMANY:factor(Reactor_Type)FBR NA
## factor(Country)INDIA:factor(Reactor_Type)FBR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)FBR NA
## factor(Country)JAPAN:factor(Reactor_Type)FBR 1.012e+01
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)FBR NA
## factor(Country)MEXICO:factor(Reactor_Type)FBR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)FBR NA
## factor(Country)RUSSIA:factor(Reactor_Type)FBR -5.196e+00
## factor(Country)SLOVAKIA:factor(Reactor_Type)FBR NA
## factor(Country)SWEDEN:factor(Reactor_Type)FBR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)FBR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)FBR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)FBR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)FBR NA
## factor(Country)BELARUS:factor(Reactor_Type)GCR NA
## factor(Country)BRAZIL:factor(Reactor_Type)GCR NA
## factor(Country)CANADA:factor(Reactor_Type)GCR NA
## factor(Country)CHINA:factor(Reactor_Type)GCR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)GCR NA
## factor(Country)FRANCE:factor(Reactor_Type)GCR NA
## factor(Country)GERMANY:factor(Reactor_Type)GCR NA
## factor(Country)INDIA:factor(Reactor_Type)GCR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)GCR NA
## factor(Country)JAPAN:factor(Reactor_Type)GCR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)GCR NA
## factor(Country)MEXICO:factor(Reactor_Type)GCR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)GCR NA
## factor(Country)RUSSIA:factor(Reactor_Type)GCR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)GCR NA
## factor(Country)SWEDEN:factor(Reactor_Type)GCR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)GCR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)GCR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)GCR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)GCR NA
## factor(Country)BELARUS:factor(Reactor_Type)HTGR NA
## factor(Country)BRAZIL:factor(Reactor_Type)HTGR NA
## factor(Country)CANADA:factor(Reactor_Type)HTGR NA
## factor(Country)CHINA:factor(Reactor_Type)HTGR 6.241e+00
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)HTGR NA
## factor(Country)FRANCE:factor(Reactor_Type)HTGR NA
## factor(Country)GERMANY:factor(Reactor_Type)HTGR 2.272e+00
## factor(Country)INDIA:factor(Reactor_Type)HTGR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)HTGR NA
## factor(Country)JAPAN:factor(Reactor_Type)HTGR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)HTGR NA
## factor(Country)MEXICO:factor(Reactor_Type)HTGR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)HTGR NA
## factor(Country)RUSSIA:factor(Reactor_Type)HTGR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)HTGR NA
## factor(Country)SWEDEN:factor(Reactor_Type)HTGR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)HTGR NA
## factor(Country)BELARUS:factor(Reactor_Type)LWGR NA
## factor(Country)BRAZIL:factor(Reactor_Type)LWGR NA
## factor(Country)CANADA:factor(Reactor_Type)LWGR NA
## factor(Country)CHINA:factor(Reactor_Type)LWGR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)LWGR NA
## factor(Country)FRANCE:factor(Reactor_Type)LWGR NA
## factor(Country)GERMANY:factor(Reactor_Type)LWGR NA
## factor(Country)INDIA:factor(Reactor_Type)LWGR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)LWGR NA
## factor(Country)JAPAN:factor(Reactor_Type)LWGR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)LWGR NA
## factor(Country)MEXICO:factor(Reactor_Type)LWGR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)LWGR NA
## factor(Country)RUSSIA:factor(Reactor_Type)LWGR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)LWGR NA
## factor(Country)SWEDEN:factor(Reactor_Type)LWGR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)LWGR NA
## factor(Country)BELARUS:factor(Reactor_Type)PHWR NA
## factor(Country)BRAZIL:factor(Reactor_Type)PHWR NA
## factor(Country)CANADA:factor(Reactor_Type)PHWR 1.741e+01
## factor(Country)CHINA:factor(Reactor_Type)PHWR 1.030e+01
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)PHWR NA
## factor(Country)FRANCE:factor(Reactor_Type)PHWR NA
## factor(Country)GERMANY:factor(Reactor_Type)PHWR NA
## factor(Country)INDIA:factor(Reactor_Type)PHWR 1.052e+01
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)PHWR NA
## factor(Country)JAPAN:factor(Reactor_Type)PHWR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)PHWR NA
## factor(Country)MEXICO:factor(Reactor_Type)PHWR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)PHWR NA
## factor(Country)RUSSIA:factor(Reactor_Type)PHWR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)PHWR NA
## factor(Country)SWEDEN:factor(Reactor_Type)PHWR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)PHWR NA
## factor(Country)BELARUS:factor(Reactor_Type)PWR NA
## factor(Country)BRAZIL:factor(Reactor_Type)PWR NA
## factor(Country)CANADA:factor(Reactor_Type)PWR NA
## factor(Country)CHINA:factor(Reactor_Type)PWR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)PWR NA
## factor(Country)FRANCE:factor(Reactor_Type)PWR NA
## factor(Country)GERMANY:factor(Reactor_Type)PWR NA
## factor(Country)INDIA:factor(Reactor_Type)PWR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)PWR NA
## factor(Country)JAPAN:factor(Reactor_Type)PWR 4.303e+00
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)PWR NA
## factor(Country)MEXICO:factor(Reactor_Type)PWR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)PWR NA
## factor(Country)RUSSIA:factor(Reactor_Type)PWR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)PWR NA
## factor(Country)SWEDEN:factor(Reactor_Type)PWR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)PWR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)PWR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)PWR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)PWR NA
## factor(Country)BELARUS:Gross_Capacity_MWe NA
## factor(Country)BRAZIL:Gross_Capacity_MWe 1.988e-03
## factor(Country)CANADA:Gross_Capacity_MWe 4.531e-03
## factor(Country)CHINA:Gross_Capacity_MWe -9.624e-03
## factor(Country)CZECH REPUBLIC:Gross_Capacity_MWe -2.799e-03
## factor(Country)FRANCE:Gross_Capacity_MWe 1.877e-01
## factor(Country)GERMANY:Gross_Capacity_MWe 4.531e-03
## factor(Country)INDIA:Gross_Capacity_MWe -3.734e-03
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:Gross_Capacity_MWe NA
## factor(Country)JAPAN:Gross_Capacity_MWe NA
## factor(Country)KOREA, REPUBLIC OF:Gross_Capacity_MWe -1.397e-02
## factor(Country)MEXICO:Gross_Capacity_MWe NA
## factor(Country)PAKISTAN:Gross_Capacity_MWe -4.842e-03
## factor(Country)RUSSIA:Gross_Capacity_MWe -8.014e-03
## factor(Country)SLOVAKIA:Gross_Capacity_MWe NA
## factor(Country)SWEDEN:Gross_Capacity_MWe NA
## factor(Country)SWITZERLAND:Gross_Capacity_MWe NA
## factor(Country)UNITED ARAB EMIRATES:Gross_Capacity_MWe -1.361e-02
## factor(Country)UNITED KINGDOM:Gross_Capacity_MWe NA
## factor(Country)UNITED STATES OF AMERICA:Gross_Capacity_MWe 5.066e-03
## factor(Country)BELARUS:Duration NA
## factor(Country)BRAZIL:Duration NA
## factor(Country)CANADA:Duration 2.755e-01
## factor(Country)CHINA:Duration 2.861e-01
## factor(Country)CZECH REPUBLIC:Duration -4.114e-01
## factor(Country)FRANCE:Duration 1.212e-01
## factor(Country)GERMANY:Duration NA
## factor(Country)INDIA:Duration 2.326e-02
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:Duration NA
## factor(Country)JAPAN:Duration 5.073e-02
## factor(Country)KOREA, REPUBLIC OF:Duration -6.839e-02
## factor(Country)MEXICO:Duration NA
## factor(Country)PAKISTAN:Duration -4.633e+00
## factor(Country)RUSSIA:Duration -1.896e-02
## factor(Country)SLOVAKIA:Duration -1.487e-01
## factor(Country)SWEDEN:Duration NA
## factor(Country)SWITZERLAND:Duration NA
## factor(Country)UNITED ARAB EMIRATES:Duration NA
## factor(Country)UNITED KINGDOM:Duration NA
## factor(Country)UNITED STATES OF AMERICA:Duration 4.461e-04
## factor(Country)BELARUS:Average_Concrete_Price NA
## factor(Country)BRAZIL:Average_Concrete_Price NA
## factor(Country)CANADA:Average_Concrete_Price -6.296e-02
## factor(Country)CHINA:Average_Concrete_Price -4.310e-02
## factor(Country)CZECH REPUBLIC:Average_Concrete_Price 1.752e-01
## factor(Country)FRANCE:Average_Concrete_Price -8.218e-02
## factor(Country)GERMANY:Average_Concrete_Price NA
## factor(Country)INDIA:Average_Concrete_Price -2.859e-02
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:Average_Concrete_Price NA
## factor(Country)JAPAN:Average_Concrete_Price -7.638e-02
## factor(Country)KOREA, REPUBLIC OF:Average_Concrete_Price NA
## factor(Country)MEXICO:Average_Concrete_Price NA
## factor(Country)PAKISTAN:Average_Concrete_Price -5.074e-02
## factor(Country)RUSSIA:Average_Concrete_Price -4.095e-02
## factor(Country)SLOVAKIA:Average_Concrete_Price NA
## factor(Country)SWEDEN:Average_Concrete_Price NA
## factor(Country)SWITZERLAND:Average_Concrete_Price NA
## factor(Country)UNITED ARAB EMIRATES:Average_Concrete_Price -7.432e-02
## factor(Country)UNITED KINGDOM:Average_Concrete_Price NA
## factor(Country)UNITED STATES OF AMERICA:Average_Concrete_Price NA
## factor(Reactor_Type)FBR:Gross_Capacity_MWe -2.750e-03
## factor(Reactor_Type)GCR:Gross_Capacity_MWe NA
## factor(Reactor_Type)HTGR:Gross_Capacity_MWe -1.499e-03
## factor(Reactor_Type)LWGR:Gross_Capacity_MWe NA
## factor(Reactor_Type)PHWR:Gross_Capacity_MWe NA
## factor(Reactor_Type)PWR:Gross_Capacity_MWe 8.577e-04
## factor(Reactor_Type)FBR:Duration 1.237e-01
## factor(Reactor_Type)GCR:Duration NA
## factor(Reactor_Type)HTGR:Duration NA
## factor(Reactor_Type)LWGR:Duration -2.037e-01
## factor(Reactor_Type)PHWR:Duration -9.482e-02
## factor(Reactor_Type)PWR:Duration 1.176e-01
## factor(Reactor_Type)FBR:Average_Concrete_Price NA
## factor(Reactor_Type)GCR:Average_Concrete_Price NA
## factor(Reactor_Type)HTGR:Average_Concrete_Price NA
## factor(Reactor_Type)LWGR:Average_Concrete_Price 3.150e-02
## factor(Reactor_Type)PHWR:Average_Concrete_Price 9.633e-03
## factor(Reactor_Type)PWR:Average_Concrete_Price -4.435e-02
## Gross_Capacity_MWe:Duration -2.329e-04
## Gross_Capacity_MWe:Average_Concrete_Price 8.000e-05
## Duration:Average_Concrete_Price -8.933e-04
## Std. Error
## (Intercept) 5.000e+01
## factor(Country)BELARUS 5.002e+01
## factor(Country)BRAZIL 5.005e+01
## factor(Country)CANADA 4.975e+01
## factor(Country)CHINA 4.901e+01
## factor(Country)CZECH REPUBLIC 2.316e+02
## factor(Country)FRANCE 2.712e+04
## factor(Country)GERMANY 5.595e+01
## factor(Country)INDIA 1.078e+02
## factor(Country)IRAN, ISLAMIC REPUBLIC OF 5.533e+01
## factor(Country)JAPAN 5.031e+01
## factor(Country)KOREA, REPUBLIC OF 4.961e+01
## factor(Country)MEXICO 4.999e+01
## factor(Country)PAKISTAN 8.372e+01
## factor(Country)RUSSIA 4.908e+01
## factor(Country)SLOVAKIA 5.724e+01
## factor(Country)SWEDEN 3.901e+00
## factor(Country)SWITZERLAND 5.030e+01
## factor(Country)UNITED ARAB EMIRATES 3.349e+02
## factor(Country)UNITED KINGDOM 4.971e+01
## factor(Country)UNITED STATES OF AMERICA 4.986e+01
## factor(Reactor_Type)FBR 4.746e+00
## factor(Reactor_Type)GCR 3.653e+00
## factor(Reactor_Type)HTGR 1.749e+00
## factor(Reactor_Type)LWGR 1.862e+01
## factor(Reactor_Type)PHWR 4.978e+01
## factor(Reactor_Type)PWR 9.289e-01
## Gross_Capacity_MWe 8.660e-03
## Duration 7.902e-01
## Average_Concrete_Price 5.147e-02
## factor(Country)BELARUS:factor(Reactor_Type)FBR NA
## factor(Country)BRAZIL:factor(Reactor_Type)FBR NA
## factor(Country)CANADA:factor(Reactor_Type)FBR NA
## factor(Country)CHINA:factor(Reactor_Type)FBR 5.848e+00
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)FBR NA
## factor(Country)FRANCE:factor(Reactor_Type)FBR 5.535e+03
## factor(Country)GERMANY:factor(Reactor_Type)FBR NA
## factor(Country)INDIA:factor(Reactor_Type)FBR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)FBR NA
## factor(Country)JAPAN:factor(Reactor_Type)FBR 8.224e+00
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)FBR NA
## factor(Country)MEXICO:factor(Reactor_Type)FBR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)FBR NA
## factor(Country)RUSSIA:factor(Reactor_Type)FBR 1.369e+01
## factor(Country)SLOVAKIA:factor(Reactor_Type)FBR NA
## factor(Country)SWEDEN:factor(Reactor_Type)FBR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)FBR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)FBR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)FBR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)FBR NA
## factor(Country)BELARUS:factor(Reactor_Type)GCR NA
## factor(Country)BRAZIL:factor(Reactor_Type)GCR NA
## factor(Country)CANADA:factor(Reactor_Type)GCR NA
## factor(Country)CHINA:factor(Reactor_Type)GCR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)GCR NA
## factor(Country)FRANCE:factor(Reactor_Type)GCR NA
## factor(Country)GERMANY:factor(Reactor_Type)GCR NA
## factor(Country)INDIA:factor(Reactor_Type)GCR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)GCR NA
## factor(Country)JAPAN:factor(Reactor_Type)GCR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)GCR NA
## factor(Country)MEXICO:factor(Reactor_Type)GCR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)GCR NA
## factor(Country)RUSSIA:factor(Reactor_Type)GCR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)GCR NA
## factor(Country)SWEDEN:factor(Reactor_Type)GCR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)GCR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)GCR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)GCR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)GCR NA
## factor(Country)BELARUS:factor(Reactor_Type)HTGR NA
## factor(Country)BRAZIL:factor(Reactor_Type)HTGR NA
## factor(Country)CANADA:factor(Reactor_Type)HTGR NA
## factor(Country)CHINA:factor(Reactor_Type)HTGR 5.891e+00
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)HTGR NA
## factor(Country)FRANCE:factor(Reactor_Type)HTGR NA
## factor(Country)GERMANY:factor(Reactor_Type)HTGR 2.447e+01
## factor(Country)INDIA:factor(Reactor_Type)HTGR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)HTGR NA
## factor(Country)JAPAN:factor(Reactor_Type)HTGR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)HTGR NA
## factor(Country)MEXICO:factor(Reactor_Type)HTGR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)HTGR NA
## factor(Country)RUSSIA:factor(Reactor_Type)HTGR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)HTGR NA
## factor(Country)SWEDEN:factor(Reactor_Type)HTGR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)HTGR NA
## factor(Country)BELARUS:factor(Reactor_Type)LWGR NA
## factor(Country)BRAZIL:factor(Reactor_Type)LWGR NA
## factor(Country)CANADA:factor(Reactor_Type)LWGR NA
## factor(Country)CHINA:factor(Reactor_Type)LWGR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)LWGR NA
## factor(Country)FRANCE:factor(Reactor_Type)LWGR NA
## factor(Country)GERMANY:factor(Reactor_Type)LWGR NA
## factor(Country)INDIA:factor(Reactor_Type)LWGR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)LWGR NA
## factor(Country)JAPAN:factor(Reactor_Type)LWGR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)LWGR NA
## factor(Country)MEXICO:factor(Reactor_Type)LWGR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)LWGR NA
## factor(Country)RUSSIA:factor(Reactor_Type)LWGR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)LWGR NA
## factor(Country)SWEDEN:factor(Reactor_Type)LWGR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)LWGR NA
## factor(Country)BELARUS:factor(Reactor_Type)PHWR NA
## factor(Country)BRAZIL:factor(Reactor_Type)PHWR NA
## factor(Country)CANADA:factor(Reactor_Type)PHWR 4.955e+01
## factor(Country)CHINA:factor(Reactor_Type)PHWR 4.921e+01
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)PHWR NA
## factor(Country)FRANCE:factor(Reactor_Type)PHWR NA
## factor(Country)GERMANY:factor(Reactor_Type)PHWR NA
## factor(Country)INDIA:factor(Reactor_Type)PHWR 9.092e+01
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)PHWR NA
## factor(Country)JAPAN:factor(Reactor_Type)PHWR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)PHWR NA
## factor(Country)MEXICO:factor(Reactor_Type)PHWR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)PHWR NA
## factor(Country)RUSSIA:factor(Reactor_Type)PHWR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)PHWR NA
## factor(Country)SWEDEN:factor(Reactor_Type)PHWR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)PHWR NA
## factor(Country)BELARUS:factor(Reactor_Type)PWR NA
## factor(Country)BRAZIL:factor(Reactor_Type)PWR NA
## factor(Country)CANADA:factor(Reactor_Type)PWR NA
## factor(Country)CHINA:factor(Reactor_Type)PWR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)PWR NA
## factor(Country)FRANCE:factor(Reactor_Type)PWR NA
## factor(Country)GERMANY:factor(Reactor_Type)PWR NA
## factor(Country)INDIA:factor(Reactor_Type)PWR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)PWR NA
## factor(Country)JAPAN:factor(Reactor_Type)PWR 1.133e+01
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)PWR NA
## factor(Country)MEXICO:factor(Reactor_Type)PWR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)PWR NA
## factor(Country)RUSSIA:factor(Reactor_Type)PWR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)PWR NA
## factor(Country)SWEDEN:factor(Reactor_Type)PWR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)PWR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)PWR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)PWR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)PWR NA
## factor(Country)BELARUS:Gross_Capacity_MWe NA
## factor(Country)BRAZIL:Gross_Capacity_MWe 1.789e-02
## factor(Country)CANADA:Gross_Capacity_MWe 8.818e-03
## factor(Country)CHINA:Gross_Capacity_MWe 1.087e-02
## factor(Country)CZECH REPUBLIC:Gross_Capacity_MWe 8.083e-02
## factor(Country)FRANCE:Gross_Capacity_MWe 1.728e+01
## factor(Country)GERMANY:Gross_Capacity_MWe 2.329e-02
## factor(Country)INDIA:Gross_Capacity_MWe 9.505e-02
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:Gross_Capacity_MWe NA
## factor(Country)JAPAN:Gross_Capacity_MWe NA
## factor(Country)KOREA, REPUBLIC OF:Gross_Capacity_MWe 1.602e-02
## factor(Country)MEXICO:Gross_Capacity_MWe NA
## factor(Country)PAKISTAN:Gross_Capacity_MWe 2.086e-02
## factor(Country)RUSSIA:Gross_Capacity_MWe 1.027e-02
## factor(Country)SLOVAKIA:Gross_Capacity_MWe NA
## factor(Country)SWEDEN:Gross_Capacity_MWe NA
## factor(Country)SWITZERLAND:Gross_Capacity_MWe NA
## factor(Country)UNITED ARAB EMIRATES:Gross_Capacity_MWe 1.996e-01
## factor(Country)UNITED KINGDOM:Gross_Capacity_MWe NA
## factor(Country)UNITED STATES OF AMERICA:Gross_Capacity_MWe 8.554e-03
## factor(Country)BELARUS:Duration NA
## factor(Country)BRAZIL:Duration NA
## factor(Country)CANADA:Duration 4.983e-01
## factor(Country)CHINA:Duration 7.146e-01
## factor(Country)CZECH REPUBLIC:Duration 5.009e+00
## factor(Country)FRANCE:Duration 6.626e+00
## factor(Country)GERMANY:Duration NA
## factor(Country)INDIA:Duration 4.107e-01
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:Duration NA
## factor(Country)JAPAN:Duration 3.443e+00
## factor(Country)KOREA, REPUBLIC OF:Duration 1.182e+00
## factor(Country)MEXICO:Duration NA
## factor(Country)PAKISTAN:Duration 1.580e+01
## factor(Country)RUSSIA:Duration 7.062e-01
## factor(Country)SLOVAKIA:Duration 2.022e+00
## factor(Country)SWEDEN:Duration NA
## factor(Country)SWITZERLAND:Duration NA
## factor(Country)UNITED ARAB EMIRATES:Duration NA
## factor(Country)UNITED KINGDOM:Duration NA
## factor(Country)UNITED STATES OF AMERICA:Duration 7.005e-01
## factor(Country)BELARUS:Average_Concrete_Price NA
## factor(Country)BRAZIL:Average_Concrete_Price NA
## factor(Country)CANADA:Average_Concrete_Price 6.136e-02
## factor(Country)CHINA:Average_Concrete_Price 1.401e-02
## factor(Country)CZECH REPUBLIC:Average_Concrete_Price 3.083e+00
## factor(Country)FRANCE:Average_Concrete_Price 7.812e-01
## factor(Country)GERMANY:Average_Concrete_Price NA
## factor(Country)INDIA:Average_Concrete_Price 4.843e-02
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:Average_Concrete_Price NA
## factor(Country)JAPAN:Average_Concrete_Price 1.836e-01
## factor(Country)KOREA, REPUBLIC OF:Average_Concrete_Price NA
## factor(Country)MEXICO:Average_Concrete_Price NA
## factor(Country)PAKISTAN:Average_Concrete_Price 2.140e-01
## factor(Country)RUSSIA:Average_Concrete_Price 1.521e-02
## factor(Country)SLOVAKIA:Average_Concrete_Price NA
## factor(Country)SWEDEN:Average_Concrete_Price NA
## factor(Country)SWITZERLAND:Average_Concrete_Price NA
## factor(Country)UNITED ARAB EMIRATES:Average_Concrete_Price 2.194e-01
## factor(Country)UNITED KINGDOM:Average_Concrete_Price NA
## factor(Country)UNITED STATES OF AMERICA:Average_Concrete_Price NA
## factor(Reactor_Type)FBR:Gross_Capacity_MWe 2.004e-02
## factor(Reactor_Type)GCR:Gross_Capacity_MWe NA
## factor(Reactor_Type)HTGR:Gross_Capacity_MWe 6.423e-03
## factor(Reactor_Type)LWGR:Gross_Capacity_MWe NA
## factor(Reactor_Type)PHWR:Gross_Capacity_MWe NA
## factor(Reactor_Type)PWR:Gross_Capacity_MWe 1.199e-03
## factor(Reactor_Type)FBR:Duration 7.287e-01
## factor(Reactor_Type)GCR:Duration NA
## factor(Reactor_Type)HTGR:Duration NA
## factor(Reactor_Type)LWGR:Duration 1.006e+00
## factor(Reactor_Type)PHWR:Duration 6.180e-01
## factor(Reactor_Type)PWR:Duration 1.816e-01
## factor(Reactor_Type)FBR:Average_Concrete_Price NA
## factor(Reactor_Type)GCR:Average_Concrete_Price NA
## factor(Reactor_Type)HTGR:Average_Concrete_Price NA
## factor(Reactor_Type)LWGR:Average_Concrete_Price 5.337e-01
## factor(Reactor_Type)PHWR:Average_Concrete_Price 6.362e-02
## factor(Reactor_Type)PWR:Average_Concrete_Price 2.536e-02
## Gross_Capacity_MWe:Duration 2.872e-04
## Gross_Capacity_MWe:Average_Concrete_Price 4.111e-05
## Duration:Average_Concrete_Price 1.026e-03
## t value
## (Intercept) 0.379
## factor(Country)BELARUS -0.336
## factor(Country)BRAZIL -0.367
## factor(Country)CANADA -0.383
## factor(Country)CHINA -0.090
## factor(Country)CZECH REPUBLIC -0.133
## factor(Country)FRANCE -0.011
## factor(Country)GERMANY -0.389
## factor(Country)INDIA -0.099
## factor(Country)IRAN, ISLAMIC REPUBLIC OF -0.176
## factor(Country)JAPAN -0.269
## factor(Country)KOREA, REPUBLIC OF -0.135
## factor(Country)MEXICO -0.399
## factor(Country)PAKISTAN 0.283
## factor(Country)RUSSIA -0.088
## factor(Country)SLOVAKIA -0.251
## factor(Country)SWEDEN -0.654
## factor(Country)SWITZERLAND -0.299
## factor(Country)UNITED ARAB EMIRATES 0.041
## factor(Country)UNITED KINGDOM -0.394
## factor(Country)UNITED STATES OF AMERICA -0.397
## factor(Reactor_Type)FBR -0.143
## factor(Reactor_Type)GCR 0.317
## factor(Reactor_Type)HTGR -0.151
## factor(Reactor_Type)LWGR -0.780
## factor(Reactor_Type)PHWR -0.357
## factor(Reactor_Type)PWR 0.264
## Gross_Capacity_MWe -0.757
## Duration 0.328
## Average_Concrete_Price 0.242
## factor(Country)BELARUS:factor(Reactor_Type)FBR NA
## factor(Country)BRAZIL:factor(Reactor_Type)FBR NA
## factor(Country)CANADA:factor(Reactor_Type)FBR NA
## factor(Country)CHINA:factor(Reactor_Type)FBR -2.203
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)FBR NA
## factor(Country)FRANCE:factor(Reactor_Type)FBR 0.013
## factor(Country)GERMANY:factor(Reactor_Type)FBR NA
## factor(Country)INDIA:factor(Reactor_Type)FBR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)FBR NA
## factor(Country)JAPAN:factor(Reactor_Type)FBR 1.231
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)FBR NA
## factor(Country)MEXICO:factor(Reactor_Type)FBR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)FBR NA
## factor(Country)RUSSIA:factor(Reactor_Type)FBR -0.380
## factor(Country)SLOVAKIA:factor(Reactor_Type)FBR NA
## factor(Country)SWEDEN:factor(Reactor_Type)FBR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)FBR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)FBR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)FBR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)FBR NA
## factor(Country)BELARUS:factor(Reactor_Type)GCR NA
## factor(Country)BRAZIL:factor(Reactor_Type)GCR NA
## factor(Country)CANADA:factor(Reactor_Type)GCR NA
## factor(Country)CHINA:factor(Reactor_Type)GCR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)GCR NA
## factor(Country)FRANCE:factor(Reactor_Type)GCR NA
## factor(Country)GERMANY:factor(Reactor_Type)GCR NA
## factor(Country)INDIA:factor(Reactor_Type)GCR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)GCR NA
## factor(Country)JAPAN:factor(Reactor_Type)GCR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)GCR NA
## factor(Country)MEXICO:factor(Reactor_Type)GCR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)GCR NA
## factor(Country)RUSSIA:factor(Reactor_Type)GCR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)GCR NA
## factor(Country)SWEDEN:factor(Reactor_Type)GCR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)GCR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)GCR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)GCR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)GCR NA
## factor(Country)BELARUS:factor(Reactor_Type)HTGR NA
## factor(Country)BRAZIL:factor(Reactor_Type)HTGR NA
## factor(Country)CANADA:factor(Reactor_Type)HTGR NA
## factor(Country)CHINA:factor(Reactor_Type)HTGR 1.059
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)HTGR NA
## factor(Country)FRANCE:factor(Reactor_Type)HTGR NA
## factor(Country)GERMANY:factor(Reactor_Type)HTGR 0.093
## factor(Country)INDIA:factor(Reactor_Type)HTGR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)HTGR NA
## factor(Country)JAPAN:factor(Reactor_Type)HTGR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)HTGR NA
## factor(Country)MEXICO:factor(Reactor_Type)HTGR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)HTGR NA
## factor(Country)RUSSIA:factor(Reactor_Type)HTGR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)HTGR NA
## factor(Country)SWEDEN:factor(Reactor_Type)HTGR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)HTGR NA
## factor(Country)BELARUS:factor(Reactor_Type)LWGR NA
## factor(Country)BRAZIL:factor(Reactor_Type)LWGR NA
## factor(Country)CANADA:factor(Reactor_Type)LWGR NA
## factor(Country)CHINA:factor(Reactor_Type)LWGR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)LWGR NA
## factor(Country)FRANCE:factor(Reactor_Type)LWGR NA
## factor(Country)GERMANY:factor(Reactor_Type)LWGR NA
## factor(Country)INDIA:factor(Reactor_Type)LWGR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)LWGR NA
## factor(Country)JAPAN:factor(Reactor_Type)LWGR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)LWGR NA
## factor(Country)MEXICO:factor(Reactor_Type)LWGR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)LWGR NA
## factor(Country)RUSSIA:factor(Reactor_Type)LWGR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)LWGR NA
## factor(Country)SWEDEN:factor(Reactor_Type)LWGR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)LWGR NA
## factor(Country)BELARUS:factor(Reactor_Type)PHWR NA
## factor(Country)BRAZIL:factor(Reactor_Type)PHWR NA
## factor(Country)CANADA:factor(Reactor_Type)PHWR 0.351
## factor(Country)CHINA:factor(Reactor_Type)PHWR 0.209
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)PHWR NA
## factor(Country)FRANCE:factor(Reactor_Type)PHWR NA
## factor(Country)GERMANY:factor(Reactor_Type)PHWR NA
## factor(Country)INDIA:factor(Reactor_Type)PHWR 0.116
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)PHWR NA
## factor(Country)JAPAN:factor(Reactor_Type)PHWR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)PHWR NA
## factor(Country)MEXICO:factor(Reactor_Type)PHWR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)PHWR NA
## factor(Country)RUSSIA:factor(Reactor_Type)PHWR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)PHWR NA
## factor(Country)SWEDEN:factor(Reactor_Type)PHWR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)PHWR NA
## factor(Country)BELARUS:factor(Reactor_Type)PWR NA
## factor(Country)BRAZIL:factor(Reactor_Type)PWR NA
## factor(Country)CANADA:factor(Reactor_Type)PWR NA
## factor(Country)CHINA:factor(Reactor_Type)PWR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)PWR NA
## factor(Country)FRANCE:factor(Reactor_Type)PWR NA
## factor(Country)GERMANY:factor(Reactor_Type)PWR NA
## factor(Country)INDIA:factor(Reactor_Type)PWR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)PWR NA
## factor(Country)JAPAN:factor(Reactor_Type)PWR 0.380
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)PWR NA
## factor(Country)MEXICO:factor(Reactor_Type)PWR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)PWR NA
## factor(Country)RUSSIA:factor(Reactor_Type)PWR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)PWR NA
## factor(Country)SWEDEN:factor(Reactor_Type)PWR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)PWR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)PWR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)PWR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)PWR NA
## factor(Country)BELARUS:Gross_Capacity_MWe NA
## factor(Country)BRAZIL:Gross_Capacity_MWe 0.111
## factor(Country)CANADA:Gross_Capacity_MWe 0.514
## factor(Country)CHINA:Gross_Capacity_MWe -0.885
## factor(Country)CZECH REPUBLIC:Gross_Capacity_MWe -0.035
## factor(Country)FRANCE:Gross_Capacity_MWe 0.011
## factor(Country)GERMANY:Gross_Capacity_MWe 0.195
## factor(Country)INDIA:Gross_Capacity_MWe -0.039
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:Gross_Capacity_MWe NA
## factor(Country)JAPAN:Gross_Capacity_MWe NA
## factor(Country)KOREA, REPUBLIC OF:Gross_Capacity_MWe -0.872
## factor(Country)MEXICO:Gross_Capacity_MWe NA
## factor(Country)PAKISTAN:Gross_Capacity_MWe -0.232
## factor(Country)RUSSIA:Gross_Capacity_MWe -0.781
## factor(Country)SLOVAKIA:Gross_Capacity_MWe NA
## factor(Country)SWEDEN:Gross_Capacity_MWe NA
## factor(Country)SWITZERLAND:Gross_Capacity_MWe NA
## factor(Country)UNITED ARAB EMIRATES:Gross_Capacity_MWe -0.068
## factor(Country)UNITED KINGDOM:Gross_Capacity_MWe NA
## factor(Country)UNITED STATES OF AMERICA:Gross_Capacity_MWe 0.592
## factor(Country)BELARUS:Duration NA
## factor(Country)BRAZIL:Duration NA
## factor(Country)CANADA:Duration 0.553
## factor(Country)CHINA:Duration 0.400
## factor(Country)CZECH REPUBLIC:Duration -0.082
## factor(Country)FRANCE:Duration 0.018
## factor(Country)GERMANY:Duration NA
## factor(Country)INDIA:Duration 0.057
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:Duration NA
## factor(Country)JAPAN:Duration 0.015
## factor(Country)KOREA, REPUBLIC OF:Duration -0.058
## factor(Country)MEXICO:Duration NA
## factor(Country)PAKISTAN:Duration -0.293
## factor(Country)RUSSIA:Duration -0.027
## factor(Country)SLOVAKIA:Duration -0.074
## factor(Country)SWEDEN:Duration NA
## factor(Country)SWITZERLAND:Duration NA
## factor(Country)UNITED ARAB EMIRATES:Duration NA
## factor(Country)UNITED KINGDOM:Duration NA
## factor(Country)UNITED STATES OF AMERICA:Duration 0.001
## factor(Country)BELARUS:Average_Concrete_Price NA
## factor(Country)BRAZIL:Average_Concrete_Price NA
## factor(Country)CANADA:Average_Concrete_Price -1.026
## factor(Country)CHINA:Average_Concrete_Price -3.077
## factor(Country)CZECH REPUBLIC:Average_Concrete_Price 0.057
## factor(Country)FRANCE:Average_Concrete_Price -0.105
## factor(Country)GERMANY:Average_Concrete_Price NA
## factor(Country)INDIA:Average_Concrete_Price -0.590
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:Average_Concrete_Price NA
## factor(Country)JAPAN:Average_Concrete_Price -0.416
## factor(Country)KOREA, REPUBLIC OF:Average_Concrete_Price NA
## factor(Country)MEXICO:Average_Concrete_Price NA
## factor(Country)PAKISTAN:Average_Concrete_Price -0.237
## factor(Country)RUSSIA:Average_Concrete_Price -2.691
## factor(Country)SLOVAKIA:Average_Concrete_Price NA
## factor(Country)SWEDEN:Average_Concrete_Price NA
## factor(Country)SWITZERLAND:Average_Concrete_Price NA
## factor(Country)UNITED ARAB EMIRATES:Average_Concrete_Price -0.339
## factor(Country)UNITED KINGDOM:Average_Concrete_Price NA
## factor(Country)UNITED STATES OF AMERICA:Average_Concrete_Price NA
## factor(Reactor_Type)FBR:Gross_Capacity_MWe -0.137
## factor(Reactor_Type)GCR:Gross_Capacity_MWe NA
## factor(Reactor_Type)HTGR:Gross_Capacity_MWe -0.233
## factor(Reactor_Type)LWGR:Gross_Capacity_MWe NA
## factor(Reactor_Type)PHWR:Gross_Capacity_MWe NA
## factor(Reactor_Type)PWR:Gross_Capacity_MWe 0.716
## factor(Reactor_Type)FBR:Duration 0.170
## factor(Reactor_Type)GCR:Duration NA
## factor(Reactor_Type)HTGR:Duration NA
## factor(Reactor_Type)LWGR:Duration -0.203
## factor(Reactor_Type)PHWR:Duration -0.153
## factor(Reactor_Type)PWR:Duration 0.647
## factor(Reactor_Type)FBR:Average_Concrete_Price NA
## factor(Reactor_Type)GCR:Average_Concrete_Price NA
## factor(Reactor_Type)HTGR:Average_Concrete_Price NA
## factor(Reactor_Type)LWGR:Average_Concrete_Price 0.059
## factor(Reactor_Type)PHWR:Average_Concrete_Price 0.151
## factor(Reactor_Type)PWR:Average_Concrete_Price -1.749
## Gross_Capacity_MWe:Duration -0.811
## Gross_Capacity_MWe:Average_Concrete_Price 1.946
## Duration:Average_Concrete_Price -0.871
## Pr(>|t|)
## (Intercept) 0.70483
## factor(Country)BELARUS 0.73748
## factor(Country)BRAZIL 0.71397
## factor(Country)CANADA 0.70210
## factor(Country)CHINA 0.92856
## factor(Country)CZECH REPUBLIC 0.89454
## factor(Country)FRANCE 0.99110
## factor(Country)GERMANY 0.69802
## factor(Country)INDIA 0.92096
## factor(Country)IRAN, ISLAMIC REPUBLIC OF 0.86038
## factor(Country)JAPAN 0.78794
## factor(Country)KOREA, REPUBLIC OF 0.89278
## factor(Country)MEXICO 0.69006
## factor(Country)PAKISTAN 0.77747
## factor(Country)RUSSIA 0.93008
## factor(Country)SLOVAKIA 0.80181
## factor(Country)SWEDEN 0.51372
## factor(Country)SWITZERLAND 0.76545
## factor(Country)UNITED ARAB EMIRATES 0.96702
## factor(Country)UNITED KINGDOM 0.69440
## factor(Country)UNITED STATES OF AMERICA 0.69202
## factor(Reactor_Type)FBR 0.88628
## factor(Reactor_Type)GCR 0.75178
## factor(Reactor_Type)HTGR 0.88007
## factor(Reactor_Type)LWGR 0.43671
## factor(Reactor_Type)PHWR 0.72131
## factor(Reactor_Type)PWR 0.79172
## Gross_Capacity_MWe 0.45035
## Duration 0.74307
## Average_Concrete_Price 0.80919
## factor(Country)BELARUS:factor(Reactor_Type)FBR NA
## factor(Country)BRAZIL:factor(Reactor_Type)FBR NA
## factor(Country)CANADA:factor(Reactor_Type)FBR NA
## factor(Country)CHINA:factor(Reactor_Type)FBR 0.02886 *
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)FBR NA
## factor(Country)FRANCE:factor(Reactor_Type)FBR 0.99004
## factor(Country)GERMANY:factor(Reactor_Type)FBR NA
## factor(Country)INDIA:factor(Reactor_Type)FBR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)FBR NA
## factor(Country)JAPAN:factor(Reactor_Type)FBR 0.21998
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)FBR NA
## factor(Country)MEXICO:factor(Reactor_Type)FBR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)FBR NA
## factor(Country)RUSSIA:factor(Reactor_Type)FBR 0.70467
## factor(Country)SLOVAKIA:factor(Reactor_Type)FBR NA
## factor(Country)SWEDEN:factor(Reactor_Type)FBR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)FBR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)FBR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)FBR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)FBR NA
## factor(Country)BELARUS:factor(Reactor_Type)GCR NA
## factor(Country)BRAZIL:factor(Reactor_Type)GCR NA
## factor(Country)CANADA:factor(Reactor_Type)GCR NA
## factor(Country)CHINA:factor(Reactor_Type)GCR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)GCR NA
## factor(Country)FRANCE:factor(Reactor_Type)GCR NA
## factor(Country)GERMANY:factor(Reactor_Type)GCR NA
## factor(Country)INDIA:factor(Reactor_Type)GCR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)GCR NA
## factor(Country)JAPAN:factor(Reactor_Type)GCR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)GCR NA
## factor(Country)MEXICO:factor(Reactor_Type)GCR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)GCR NA
## factor(Country)RUSSIA:factor(Reactor_Type)GCR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)GCR NA
## factor(Country)SWEDEN:factor(Reactor_Type)GCR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)GCR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)GCR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)GCR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)GCR NA
## factor(Country)BELARUS:factor(Reactor_Type)HTGR NA
## factor(Country)BRAZIL:factor(Reactor_Type)HTGR NA
## factor(Country)CANADA:factor(Reactor_Type)HTGR NA
## factor(Country)CHINA:factor(Reactor_Type)HTGR 0.29085
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)HTGR NA
## factor(Country)FRANCE:factor(Reactor_Type)HTGR NA
## factor(Country)GERMANY:factor(Reactor_Type)HTGR 0.92611
## factor(Country)INDIA:factor(Reactor_Type)HTGR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)HTGR NA
## factor(Country)JAPAN:factor(Reactor_Type)HTGR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)HTGR NA
## factor(Country)MEXICO:factor(Reactor_Type)HTGR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)HTGR NA
## factor(Country)RUSSIA:factor(Reactor_Type)HTGR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)HTGR NA
## factor(Country)SWEDEN:factor(Reactor_Type)HTGR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)HTGR NA
## factor(Country)BELARUS:factor(Reactor_Type)LWGR NA
## factor(Country)BRAZIL:factor(Reactor_Type)LWGR NA
## factor(Country)CANADA:factor(Reactor_Type)LWGR NA
## factor(Country)CHINA:factor(Reactor_Type)LWGR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)LWGR NA
## factor(Country)FRANCE:factor(Reactor_Type)LWGR NA
## factor(Country)GERMANY:factor(Reactor_Type)LWGR NA
## factor(Country)INDIA:factor(Reactor_Type)LWGR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)LWGR NA
## factor(Country)JAPAN:factor(Reactor_Type)LWGR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)LWGR NA
## factor(Country)MEXICO:factor(Reactor_Type)LWGR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)LWGR NA
## factor(Country)RUSSIA:factor(Reactor_Type)LWGR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)LWGR NA
## factor(Country)SWEDEN:factor(Reactor_Type)LWGR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)LWGR NA
## factor(Country)BELARUS:factor(Reactor_Type)PHWR NA
## factor(Country)BRAZIL:factor(Reactor_Type)PHWR NA
## factor(Country)CANADA:factor(Reactor_Type)PHWR 0.72571
## factor(Country)CHINA:factor(Reactor_Type)PHWR 0.83438
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)PHWR NA
## factor(Country)FRANCE:factor(Reactor_Type)PHWR NA
## factor(Country)GERMANY:factor(Reactor_Type)PHWR NA
## factor(Country)INDIA:factor(Reactor_Type)PHWR 0.90800
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)PHWR NA
## factor(Country)JAPAN:factor(Reactor_Type)PHWR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)PHWR NA
## factor(Country)MEXICO:factor(Reactor_Type)PHWR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)PHWR NA
## factor(Country)RUSSIA:factor(Reactor_Type)PHWR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)PHWR NA
## factor(Country)SWEDEN:factor(Reactor_Type)PHWR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)PHWR NA
## factor(Country)BELARUS:factor(Reactor_Type)PWR NA
## factor(Country)BRAZIL:factor(Reactor_Type)PWR NA
## factor(Country)CANADA:factor(Reactor_Type)PWR NA
## factor(Country)CHINA:factor(Reactor_Type)PWR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)PWR NA
## factor(Country)FRANCE:factor(Reactor_Type)PWR NA
## factor(Country)GERMANY:factor(Reactor_Type)PWR NA
## factor(Country)INDIA:factor(Reactor_Type)PWR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)PWR NA
## factor(Country)JAPAN:factor(Reactor_Type)PWR 0.70467
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)PWR NA
## factor(Country)MEXICO:factor(Reactor_Type)PWR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)PWR NA
## factor(Country)RUSSIA:factor(Reactor_Type)PWR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)PWR NA
## factor(Country)SWEDEN:factor(Reactor_Type)PWR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)PWR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)PWR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)PWR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)PWR NA
## factor(Country)BELARUS:Gross_Capacity_MWe NA
## factor(Country)BRAZIL:Gross_Capacity_MWe 0.91160
## factor(Country)CANADA:Gross_Capacity_MWe 0.60803
## factor(Country)CHINA:Gross_Capacity_MWe 0.37717
## factor(Country)CZECH REPUBLIC:Gross_Capacity_MWe 0.97241
## factor(Country)FRANCE:Gross_Capacity_MWe 0.99135
## factor(Country)GERMANY:Gross_Capacity_MWe 0.84598
## factor(Country)INDIA:Gross_Capacity_MWe 0.96871
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:Gross_Capacity_MWe NA
## factor(Country)JAPAN:Gross_Capacity_MWe NA
## factor(Country)KOREA, REPUBLIC OF:Gross_Capacity_MWe 0.38433
## factor(Country)MEXICO:Gross_Capacity_MWe NA
## factor(Country)PAKISTAN:Gross_Capacity_MWe 0.81673
## factor(Country)RUSSIA:Gross_Capacity_MWe 0.43612
## factor(Country)SLOVAKIA:Gross_Capacity_MWe NA
## factor(Country)SWEDEN:Gross_Capacity_MWe NA
## factor(Country)SWITZERLAND:Gross_Capacity_MWe NA
## factor(Country)UNITED ARAB EMIRATES:Gross_Capacity_MWe 0.94571
## factor(Country)UNITED KINGDOM:Gross_Capacity_MWe NA
## factor(Country)UNITED STATES OF AMERICA:Gross_Capacity_MWe 0.55447
## factor(Country)BELARUS:Duration NA
## factor(Country)BRAZIL:Duration NA
## factor(Country)CANADA:Duration 0.58100
## factor(Country)CHINA:Duration 0.68941
## factor(Country)CZECH REPUBLIC:Duration 0.93463
## factor(Country)FRANCE:Duration 0.98542
## factor(Country)GERMANY:Duration NA
## factor(Country)INDIA:Duration 0.95490
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:Duration NA
## factor(Country)JAPAN:Duration 0.98826
## factor(Country)KOREA, REPUBLIC OF:Duration 0.95393
## factor(Country)MEXICO:Duration NA
## factor(Country)PAKISTAN:Duration 0.76971
## factor(Country)RUSSIA:Duration 0.97861
## factor(Country)SLOVAKIA:Duration 0.94145
## factor(Country)SWEDEN:Duration NA
## factor(Country)SWITZERLAND:Duration NA
## factor(Country)UNITED ARAB EMIRATES:Duration NA
## factor(Country)UNITED KINGDOM:Duration NA
## factor(Country)UNITED STATES OF AMERICA:Duration 0.99949
## factor(Country)BELARUS:Average_Concrete_Price NA
## factor(Country)BRAZIL:Average_Concrete_Price NA
## factor(Country)CANADA:Average_Concrete_Price 0.30629
## factor(Country)CHINA:Average_Concrete_Price 0.00243 **
## factor(Country)CZECH REPUBLIC:Average_Concrete_Price 0.95475
## factor(Country)FRANCE:Average_Concrete_Price 0.91634
## factor(Country)GERMANY:Average_Concrete_Price NA
## factor(Country)INDIA:Average_Concrete_Price 0.55564
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:Average_Concrete_Price NA
## factor(Country)JAPAN:Average_Concrete_Price 0.67786
## factor(Country)KOREA, REPUBLIC OF:Average_Concrete_Price NA
## factor(Country)MEXICO:Average_Concrete_Price NA
## factor(Country)PAKISTAN:Average_Concrete_Price 0.81282
## factor(Country)RUSSIA:Average_Concrete_Price 0.00780 **
## factor(Country)SLOVAKIA:Average_Concrete_Price NA
## factor(Country)SWEDEN:Average_Concrete_Price NA
## factor(Country)SWITZERLAND:Average_Concrete_Price NA
## factor(Country)UNITED ARAB EMIRATES:Average_Concrete_Price 0.73523
## factor(Country)UNITED KINGDOM:Average_Concrete_Price NA
## factor(Country)UNITED STATES OF AMERICA:Average_Concrete_Price NA
## factor(Reactor_Type)FBR:Gross_Capacity_MWe 0.89099
## factor(Reactor_Type)GCR:Gross_Capacity_MWe NA
## factor(Reactor_Type)HTGR:Gross_Capacity_MWe 0.81574
## factor(Reactor_Type)LWGR:Gross_Capacity_MWe NA
## factor(Reactor_Type)PHWR:Gross_Capacity_MWe NA
## factor(Reactor_Type)PWR:Gross_Capacity_MWe 0.47516
## factor(Reactor_Type)FBR:Duration 0.86540
## factor(Reactor_Type)GCR:Duration NA
## factor(Reactor_Type)HTGR:Duration NA
## factor(Reactor_Type)LWGR:Duration 0.83975
## factor(Reactor_Type)PHWR:Duration 0.87823
## factor(Reactor_Type)PWR:Duration 0.51821
## factor(Reactor_Type)FBR:Average_Concrete_Price NA
## factor(Reactor_Type)GCR:Average_Concrete_Price NA
## factor(Reactor_Type)HTGR:Average_Concrete_Price NA
## factor(Reactor_Type)LWGR:Average_Concrete_Price 0.95300
## factor(Reactor_Type)PHWR:Average_Concrete_Price 0.87983
## factor(Reactor_Type)PWR:Average_Concrete_Price 0.08207 .
## Gross_Capacity_MWe:Duration 0.41842
## Gross_Capacity_MWe:Average_Concrete_Price 0.05323 .
## Duration:Average_Concrete_Price 0.38495
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Residual standard error: 1.334 on 176 degrees of freedom
## Multiple R-squared: 0.7802, Adjusted R-squared: 0.6753
## F-statistic: 7.437 on 84 and 176 DF, p-value: < 2.2e-16
# Our interact model has some of the interaction terms which are significant.
# Now we shall see the summary of our intercept model by removing all the insignificant predictor variables.
# Here the null hypothesis is H0 : :βi=0
# Alternative hypothesis is Ha : βi≠0 (i=1,2,...,5)
# Now we have to manually add all the significant predictor variables to the "cleaned" interaction model. The new interaction model is the following: -
interact.new.nuclear.regression.model.reduced.cleaned<-lm(Cost_Billion_Dollars~factor(Country)+factor(Reactor_Type)+Gross_Capacity_MWe+Duration+Average_Concrete_Price+factor(Country)*factor(Reactor_Type)+factor(Country)*Average_Concrete_Price , data = nuclear.df)
options(scipen=999)
summary(interact.new.nuclear.regression.model.reduced.cleaned)
##
## Call:
## lm(formula = Cost_Billion_Dollars ~ factor(Country) + factor(Reactor_Type) +
## Gross_Capacity_MWe + Duration + Average_Concrete_Price +
## factor(Country) * factor(Reactor_Type) + factor(Country) *
## Average_Concrete_Price, data = nuclear.df)
##
## Residuals:
## Min 1Q Median 3Q Max
## -4.2864 -0.3429 -0.0075 0.2225 11.8519
##
## Coefficients: (116 not defined because of singularities)
## Estimate
## (Intercept) -2.0353231
## factor(Country)BELARUS 6.2696143
## factor(Country)BRAZIL 1.8690322
## factor(Country)CANADA 1.2668978
## factor(Country)CHINA 2.4018934
## factor(Country)CZECH REPUBLIC -1.4995625
## factor(Country)FRANCE 1.6208145
## factor(Country)GERMANY -0.2597140
## factor(Country)INDIA 3.4173212
## factor(Country)IRAN, ISLAMIC REPUBLIC OF 9.5331245
## factor(Country)JAPAN 1.7875003
## factor(Country)KOREA, REPUBLIC OF 1.8806862
## factor(Country)MEXICO -0.3145321
## factor(Country)PAKISTAN 0.0799323
## factor(Country)RUSSIA 3.1573289
## factor(Country)SLOVAKIA 4.1833222
## factor(Country)SWEDEN -0.3578059
## factor(Country)SWITZERLAND 2.0698392
## factor(Country)UNITED ARAB EMIRATES 6.2269853
## factor(Country)UNITED KINGDOM 0.9912556
## factor(Country)UNITED STATES OF AMERICA -0.1832541
## factor(Reactor_Type)FBR 0.8879288
## factor(Reactor_Type)GCR 0.9956553
## factor(Reactor_Type)HTGR 0.2395981
## factor(Reactor_Type)LWGR -0.9789946
## factor(Reactor_Type)PHWR 1.8456339
## factor(Reactor_Type)PWR -0.3058390
## Gross_Capacity_MWe 0.0013776
## Duration -0.0085935
## Average_Concrete_Price 0.0214370
## factor(Country)BELARUS:factor(Reactor_Type)FBR NA
## factor(Country)BRAZIL:factor(Reactor_Type)FBR NA
## factor(Country)CANADA:factor(Reactor_Type)FBR NA
## factor(Country)CHINA:factor(Reactor_Type)FBR -1.3558166
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)FBR NA
## factor(Country)FRANCE:factor(Reactor_Type)FBR 7.4506757
## factor(Country)GERMANY:factor(Reactor_Type)FBR NA
## factor(Country)INDIA:factor(Reactor_Type)FBR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)FBR NA
## factor(Country)JAPAN:factor(Reactor_Type)FBR 9.2822204
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)FBR NA
## factor(Country)MEXICO:factor(Reactor_Type)FBR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)FBR NA
## factor(Country)RUSSIA:factor(Reactor_Type)FBR -1.1631103
## factor(Country)SLOVAKIA:factor(Reactor_Type)FBR NA
## factor(Country)SWEDEN:factor(Reactor_Type)FBR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)FBR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)FBR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)FBR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)FBR NA
## factor(Country)BELARUS:factor(Reactor_Type)GCR NA
## factor(Country)BRAZIL:factor(Reactor_Type)GCR NA
## factor(Country)CANADA:factor(Reactor_Type)GCR NA
## factor(Country)CHINA:factor(Reactor_Type)GCR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)GCR NA
## factor(Country)FRANCE:factor(Reactor_Type)GCR NA
## factor(Country)GERMANY:factor(Reactor_Type)GCR NA
## factor(Country)INDIA:factor(Reactor_Type)GCR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)GCR NA
## factor(Country)JAPAN:factor(Reactor_Type)GCR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)GCR NA
## factor(Country)MEXICO:factor(Reactor_Type)GCR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)GCR NA
## factor(Country)RUSSIA:factor(Reactor_Type)GCR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)GCR NA
## factor(Country)SWEDEN:factor(Reactor_Type)GCR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)GCR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)GCR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)GCR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)GCR NA
## factor(Country)BELARUS:factor(Reactor_Type)HTGR NA
## factor(Country)BRAZIL:factor(Reactor_Type)HTGR NA
## factor(Country)CANADA:factor(Reactor_Type)HTGR NA
## factor(Country)CHINA:factor(Reactor_Type)HTGR 14.1141829
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)HTGR NA
## factor(Country)FRANCE:factor(Reactor_Type)HTGR NA
## factor(Country)GERMANY:factor(Reactor_Type)HTGR 1.9582799
## factor(Country)INDIA:factor(Reactor_Type)HTGR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)HTGR NA
## factor(Country)JAPAN:factor(Reactor_Type)HTGR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)HTGR NA
## factor(Country)MEXICO:factor(Reactor_Type)HTGR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)HTGR NA
## factor(Country)RUSSIA:factor(Reactor_Type)HTGR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)HTGR NA
## factor(Country)SWEDEN:factor(Reactor_Type)HTGR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)HTGR NA
## factor(Country)BELARUS:factor(Reactor_Type)LWGR NA
## factor(Country)BRAZIL:factor(Reactor_Type)LWGR NA
## factor(Country)CANADA:factor(Reactor_Type)LWGR NA
## factor(Country)CHINA:factor(Reactor_Type)LWGR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)LWGR NA
## factor(Country)FRANCE:factor(Reactor_Type)LWGR NA
## factor(Country)GERMANY:factor(Reactor_Type)LWGR NA
## factor(Country)INDIA:factor(Reactor_Type)LWGR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)LWGR NA
## factor(Country)JAPAN:factor(Reactor_Type)LWGR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)LWGR NA
## factor(Country)MEXICO:factor(Reactor_Type)LWGR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)LWGR NA
## factor(Country)RUSSIA:factor(Reactor_Type)LWGR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)LWGR NA
## factor(Country)SWEDEN:factor(Reactor_Type)LWGR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)LWGR NA
## factor(Country)BELARUS:factor(Reactor_Type)PHWR NA
## factor(Country)BRAZIL:factor(Reactor_Type)PHWR NA
## factor(Country)CANADA:factor(Reactor_Type)PHWR -2.6638691
## factor(Country)CHINA:factor(Reactor_Type)PHWR -2.1750008
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)PHWR NA
## factor(Country)FRANCE:factor(Reactor_Type)PHWR NA
## factor(Country)GERMANY:factor(Reactor_Type)PHWR NA
## factor(Country)INDIA:factor(Reactor_Type)PHWR -3.5337070
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)PHWR NA
## factor(Country)JAPAN:factor(Reactor_Type)PHWR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)PHWR NA
## factor(Country)MEXICO:factor(Reactor_Type)PHWR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)PHWR NA
## factor(Country)RUSSIA:factor(Reactor_Type)PHWR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)PHWR NA
## factor(Country)SWEDEN:factor(Reactor_Type)PHWR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)PHWR NA
## factor(Country)BELARUS:factor(Reactor_Type)PWR NA
## factor(Country)BRAZIL:factor(Reactor_Type)PWR NA
## factor(Country)CANADA:factor(Reactor_Type)PWR NA
## factor(Country)CHINA:factor(Reactor_Type)PWR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)PWR NA
## factor(Country)FRANCE:factor(Reactor_Type)PWR NA
## factor(Country)GERMANY:factor(Reactor_Type)PWR NA
## factor(Country)INDIA:factor(Reactor_Type)PWR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)PWR NA
## factor(Country)JAPAN:factor(Reactor_Type)PWR 1.5943661
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)PWR NA
## factor(Country)MEXICO:factor(Reactor_Type)PWR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)PWR NA
## factor(Country)RUSSIA:factor(Reactor_Type)PWR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)PWR NA
## factor(Country)SWEDEN:factor(Reactor_Type)PWR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)PWR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)PWR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)PWR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)PWR NA
## factor(Country)BELARUS:Average_Concrete_Price NA
## factor(Country)BRAZIL:Average_Concrete_Price -0.0019988
## factor(Country)CANADA:Average_Concrete_Price 0.0001992
## factor(Country)CHINA:Average_Concrete_Price -0.0184434
## factor(Country)CZECH REPUBLIC:Average_Concrete_Price 0.0157070
## factor(Country)FRANCE:Average_Concrete_Price -0.0162681
## factor(Country)GERMANY:Average_Concrete_Price 0.0076342
## factor(Country)INDIA:Average_Concrete_Price -0.0175617
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:Average_Concrete_Price NA
## factor(Country)JAPAN:Average_Concrete_Price -0.0253948
## factor(Country)KOREA, REPUBLIC OF:Average_Concrete_Price -0.0151111
## factor(Country)MEXICO:Average_Concrete_Price NA
## factor(Country)PAKISTAN:Average_Concrete_Price -0.0035906
## factor(Country)RUSSIA:Average_Concrete_Price -0.0214600
## factor(Country)SLOVAKIA:Average_Concrete_Price -0.0157865
## factor(Country)SWEDEN:Average_Concrete_Price NA
## factor(Country)SWITZERLAND:Average_Concrete_Price NA
## factor(Country)UNITED ARAB EMIRATES:Average_Concrete_Price -0.0201121
## factor(Country)UNITED KINGDOM:Average_Concrete_Price NA
## factor(Country)UNITED STATES OF AMERICA:Average_Concrete_Price 0.0436586
## Std. Error
## (Intercept) 3.0955378
## factor(Country)BELARUS 4.4903534
## factor(Country)BRAZIL 4.9519757
## factor(Country)CANADA 3.3751392
## factor(Country)CHINA 3.3444554
## factor(Country)CZECH REPUBLIC 5.5046603
## factor(Country)FRANCE 15.7118924
## factor(Country)GERMANY 4.8252559
## factor(Country)INDIA 3.8620077
## factor(Country)IRAN, ISLAMIC REPUBLIC OF 3.0577061
## factor(Country)JAPAN 4.4251575
## factor(Country)KOREA, REPUBLIC OF 9.2961944
## factor(Country)MEXICO 2.9982697
## factor(Country)PAKISTAN 2.2082376
## factor(Country)RUSSIA 3.3854010
## factor(Country)SLOVAKIA 138.1140220
## factor(Country)SWEDEN 1.8385679
## factor(Country)SWITZERLAND 3.0311324
## factor(Country)UNITED ARAB EMIRATES 26.2106941
## factor(Country)UNITED KINGDOM 3.3213768
## factor(Country)UNITED STATES OF AMERICA 3.1137540
## factor(Reactor_Type)FBR 0.9848141
## factor(Reactor_Type)GCR 2.0598810
## factor(Reactor_Type)HTGR 0.9708671
## factor(Reactor_Type)LWGR 1.2713225
## factor(Reactor_Type)PHWR 2.5883919
## factor(Reactor_Type)PWR 0.2605785
## Gross_Capacity_MWe 0.0004007
## Duration 0.0329856
## Average_Concrete_Price 0.0190932
## factor(Country)BELARUS:factor(Reactor_Type)FBR NA
## factor(Country)BRAZIL:factor(Reactor_Type)FBR NA
## factor(Country)CANADA:factor(Reactor_Type)FBR NA
## factor(Country)CHINA:factor(Reactor_Type)FBR 1.6243042
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)FBR NA
## factor(Country)FRANCE:factor(Reactor_Type)FBR 4.5388004
## factor(Country)GERMANY:factor(Reactor_Type)FBR NA
## factor(Country)INDIA:factor(Reactor_Type)FBR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)FBR NA
## factor(Country)JAPAN:factor(Reactor_Type)FBR 4.9996581
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)FBR NA
## factor(Country)MEXICO:factor(Reactor_Type)FBR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)FBR NA
## factor(Country)RUSSIA:factor(Reactor_Type)FBR 1.4212337
## factor(Country)SLOVAKIA:factor(Reactor_Type)FBR NA
## factor(Country)SWEDEN:factor(Reactor_Type)FBR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)FBR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)FBR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)FBR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)FBR NA
## factor(Country)BELARUS:factor(Reactor_Type)GCR NA
## factor(Country)BRAZIL:factor(Reactor_Type)GCR NA
## factor(Country)CANADA:factor(Reactor_Type)GCR NA
## factor(Country)CHINA:factor(Reactor_Type)GCR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)GCR NA
## factor(Country)FRANCE:factor(Reactor_Type)GCR NA
## factor(Country)GERMANY:factor(Reactor_Type)GCR NA
## factor(Country)INDIA:factor(Reactor_Type)GCR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)GCR NA
## factor(Country)JAPAN:factor(Reactor_Type)GCR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)GCR NA
## factor(Country)MEXICO:factor(Reactor_Type)GCR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)GCR NA
## factor(Country)RUSSIA:factor(Reactor_Type)GCR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)GCR NA
## factor(Country)SWEDEN:factor(Reactor_Type)GCR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)GCR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)GCR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)GCR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)GCR NA
## factor(Country)BELARUS:factor(Reactor_Type)HTGR NA
## factor(Country)BRAZIL:factor(Reactor_Type)HTGR NA
## factor(Country)CANADA:factor(Reactor_Type)HTGR NA
## factor(Country)CHINA:factor(Reactor_Type)HTGR 1.6234959
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)HTGR NA
## factor(Country)FRANCE:factor(Reactor_Type)HTGR NA
## factor(Country)GERMANY:factor(Reactor_Type)HTGR 2.1626254
## factor(Country)INDIA:factor(Reactor_Type)HTGR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)HTGR NA
## factor(Country)JAPAN:factor(Reactor_Type)HTGR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)HTGR NA
## factor(Country)MEXICO:factor(Reactor_Type)HTGR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)HTGR NA
## factor(Country)RUSSIA:factor(Reactor_Type)HTGR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)HTGR NA
## factor(Country)SWEDEN:factor(Reactor_Type)HTGR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)HTGR NA
## factor(Country)BELARUS:factor(Reactor_Type)LWGR NA
## factor(Country)BRAZIL:factor(Reactor_Type)LWGR NA
## factor(Country)CANADA:factor(Reactor_Type)LWGR NA
## factor(Country)CHINA:factor(Reactor_Type)LWGR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)LWGR NA
## factor(Country)FRANCE:factor(Reactor_Type)LWGR NA
## factor(Country)GERMANY:factor(Reactor_Type)LWGR NA
## factor(Country)INDIA:factor(Reactor_Type)LWGR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)LWGR NA
## factor(Country)JAPAN:factor(Reactor_Type)LWGR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)LWGR NA
## factor(Country)MEXICO:factor(Reactor_Type)LWGR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)LWGR NA
## factor(Country)RUSSIA:factor(Reactor_Type)LWGR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)LWGR NA
## factor(Country)SWEDEN:factor(Reactor_Type)LWGR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)LWGR NA
## factor(Country)BELARUS:factor(Reactor_Type)PHWR NA
## factor(Country)BRAZIL:factor(Reactor_Type)PHWR NA
## factor(Country)CANADA:factor(Reactor_Type)PHWR 2.9270970
## factor(Country)CHINA:factor(Reactor_Type)PHWR 2.7771563
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)PHWR NA
## factor(Country)FRANCE:factor(Reactor_Type)PHWR NA
## factor(Country)GERMANY:factor(Reactor_Type)PHWR NA
## factor(Country)INDIA:factor(Reactor_Type)PHWR 2.8586957
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)PHWR NA
## factor(Country)JAPAN:factor(Reactor_Type)PHWR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)PHWR NA
## factor(Country)MEXICO:factor(Reactor_Type)PHWR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)PHWR NA
## factor(Country)RUSSIA:factor(Reactor_Type)PHWR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)PHWR NA
## factor(Country)SWEDEN:factor(Reactor_Type)PHWR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)PHWR NA
## factor(Country)BELARUS:factor(Reactor_Type)PWR NA
## factor(Country)BRAZIL:factor(Reactor_Type)PWR NA
## factor(Country)CANADA:factor(Reactor_Type)PWR NA
## factor(Country)CHINA:factor(Reactor_Type)PWR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)PWR NA
## factor(Country)FRANCE:factor(Reactor_Type)PWR NA
## factor(Country)GERMANY:factor(Reactor_Type)PWR NA
## factor(Country)INDIA:factor(Reactor_Type)PWR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)PWR NA
## factor(Country)JAPAN:factor(Reactor_Type)PWR 3.8649411
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)PWR NA
## factor(Country)MEXICO:factor(Reactor_Type)PWR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)PWR NA
## factor(Country)RUSSIA:factor(Reactor_Type)PWR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)PWR NA
## factor(Country)SWEDEN:factor(Reactor_Type)PWR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)PWR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)PWR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)PWR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)PWR NA
## factor(Country)BELARUS:Average_Concrete_Price NA
## factor(Country)BRAZIL:Average_Concrete_Price 0.0464656
## factor(Country)CANADA:Average_Concrete_Price 0.0210135
## factor(Country)CHINA:Average_Concrete_Price 0.0197762
## factor(Country)CZECH REPUBLIC:Average_Concrete_Price 0.0461132
## factor(Country)FRANCE:Average_Concrete_Price 0.1322996
## factor(Country)GERMANY:Average_Concrete_Price 0.0520575
## factor(Country)INDIA:Average_Concrete_Price 0.0217943
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:Average_Concrete_Price NA
## factor(Country)JAPAN:Average_Concrete_Price 0.0722893
## factor(Country)KOREA, REPUBLIC OF:Average_Concrete_Price 0.0422588
## factor(Country)MEXICO:Average_Concrete_Price NA
## factor(Country)PAKISTAN:Average_Concrete_Price 0.0223195
## factor(Country)RUSSIA:Average_Concrete_Price 0.0202020
## factor(Country)SLOVAKIA:Average_Concrete_Price 1.1963081
## factor(Country)SWEDEN:Average_Concrete_Price NA
## factor(Country)SWITZERLAND:Average_Concrete_Price NA
## factor(Country)UNITED ARAB EMIRATES:Average_Concrete_Price 0.1035264
## factor(Country)UNITED KINGDOM:Average_Concrete_Price NA
## factor(Country)UNITED STATES OF AMERICA:Average_Concrete_Price 0.0181353
## t value
## (Intercept) -0.658
## factor(Country)BELARUS 1.396
## factor(Country)BRAZIL 0.377
## factor(Country)CANADA 0.375
## factor(Country)CHINA 0.718
## factor(Country)CZECH REPUBLIC -0.272
## factor(Country)FRANCE 0.103
## factor(Country)GERMANY -0.054
## factor(Country)INDIA 0.885
## factor(Country)IRAN, ISLAMIC REPUBLIC OF 3.118
## factor(Country)JAPAN 0.404
## factor(Country)KOREA, REPUBLIC OF 0.202
## factor(Country)MEXICO -0.105
## factor(Country)PAKISTAN 0.036
## factor(Country)RUSSIA 0.933
## factor(Country)SLOVAKIA 0.030
## factor(Country)SWEDEN -0.195
## factor(Country)SWITZERLAND 0.683
## factor(Country)UNITED ARAB EMIRATES 0.238
## factor(Country)UNITED KINGDOM 0.298
## factor(Country)UNITED STATES OF AMERICA -0.059
## factor(Reactor_Type)FBR 0.902
## factor(Reactor_Type)GCR 0.483
## factor(Reactor_Type)HTGR 0.247
## factor(Reactor_Type)LWGR -0.770
## factor(Reactor_Type)PHWR 0.713
## factor(Reactor_Type)PWR -1.174
## Gross_Capacity_MWe 3.438
## Duration -0.261
## Average_Concrete_Price 1.123
## factor(Country)BELARUS:factor(Reactor_Type)FBR NA
## factor(Country)BRAZIL:factor(Reactor_Type)FBR NA
## factor(Country)CANADA:factor(Reactor_Type)FBR NA
## factor(Country)CHINA:factor(Reactor_Type)FBR -0.835
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)FBR NA
## factor(Country)FRANCE:factor(Reactor_Type)FBR 1.642
## factor(Country)GERMANY:factor(Reactor_Type)FBR NA
## factor(Country)INDIA:factor(Reactor_Type)FBR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)FBR NA
## factor(Country)JAPAN:factor(Reactor_Type)FBR 1.857
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)FBR NA
## factor(Country)MEXICO:factor(Reactor_Type)FBR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)FBR NA
## factor(Country)RUSSIA:factor(Reactor_Type)FBR -0.818
## factor(Country)SLOVAKIA:factor(Reactor_Type)FBR NA
## factor(Country)SWEDEN:factor(Reactor_Type)FBR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)FBR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)FBR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)FBR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)FBR NA
## factor(Country)BELARUS:factor(Reactor_Type)GCR NA
## factor(Country)BRAZIL:factor(Reactor_Type)GCR NA
## factor(Country)CANADA:factor(Reactor_Type)GCR NA
## factor(Country)CHINA:factor(Reactor_Type)GCR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)GCR NA
## factor(Country)FRANCE:factor(Reactor_Type)GCR NA
## factor(Country)GERMANY:factor(Reactor_Type)GCR NA
## factor(Country)INDIA:factor(Reactor_Type)GCR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)GCR NA
## factor(Country)JAPAN:factor(Reactor_Type)GCR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)GCR NA
## factor(Country)MEXICO:factor(Reactor_Type)GCR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)GCR NA
## factor(Country)RUSSIA:factor(Reactor_Type)GCR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)GCR NA
## factor(Country)SWEDEN:factor(Reactor_Type)GCR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)GCR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)GCR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)GCR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)GCR NA
## factor(Country)BELARUS:factor(Reactor_Type)HTGR NA
## factor(Country)BRAZIL:factor(Reactor_Type)HTGR NA
## factor(Country)CANADA:factor(Reactor_Type)HTGR NA
## factor(Country)CHINA:factor(Reactor_Type)HTGR 8.694
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)HTGR NA
## factor(Country)FRANCE:factor(Reactor_Type)HTGR NA
## factor(Country)GERMANY:factor(Reactor_Type)HTGR 0.906
## factor(Country)INDIA:factor(Reactor_Type)HTGR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)HTGR NA
## factor(Country)JAPAN:factor(Reactor_Type)HTGR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)HTGR NA
## factor(Country)MEXICO:factor(Reactor_Type)HTGR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)HTGR NA
## factor(Country)RUSSIA:factor(Reactor_Type)HTGR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)HTGR NA
## factor(Country)SWEDEN:factor(Reactor_Type)HTGR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)HTGR NA
## factor(Country)BELARUS:factor(Reactor_Type)LWGR NA
## factor(Country)BRAZIL:factor(Reactor_Type)LWGR NA
## factor(Country)CANADA:factor(Reactor_Type)LWGR NA
## factor(Country)CHINA:factor(Reactor_Type)LWGR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)LWGR NA
## factor(Country)FRANCE:factor(Reactor_Type)LWGR NA
## factor(Country)GERMANY:factor(Reactor_Type)LWGR NA
## factor(Country)INDIA:factor(Reactor_Type)LWGR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)LWGR NA
## factor(Country)JAPAN:factor(Reactor_Type)LWGR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)LWGR NA
## factor(Country)MEXICO:factor(Reactor_Type)LWGR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)LWGR NA
## factor(Country)RUSSIA:factor(Reactor_Type)LWGR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)LWGR NA
## factor(Country)SWEDEN:factor(Reactor_Type)LWGR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)LWGR NA
## factor(Country)BELARUS:factor(Reactor_Type)PHWR NA
## factor(Country)BRAZIL:factor(Reactor_Type)PHWR NA
## factor(Country)CANADA:factor(Reactor_Type)PHWR -0.910
## factor(Country)CHINA:factor(Reactor_Type)PHWR -0.783
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)PHWR NA
## factor(Country)FRANCE:factor(Reactor_Type)PHWR NA
## factor(Country)GERMANY:factor(Reactor_Type)PHWR NA
## factor(Country)INDIA:factor(Reactor_Type)PHWR -1.236
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)PHWR NA
## factor(Country)JAPAN:factor(Reactor_Type)PHWR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)PHWR NA
## factor(Country)MEXICO:factor(Reactor_Type)PHWR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)PHWR NA
## factor(Country)RUSSIA:factor(Reactor_Type)PHWR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)PHWR NA
## factor(Country)SWEDEN:factor(Reactor_Type)PHWR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)PHWR NA
## factor(Country)BELARUS:factor(Reactor_Type)PWR NA
## factor(Country)BRAZIL:factor(Reactor_Type)PWR NA
## factor(Country)CANADA:factor(Reactor_Type)PWR NA
## factor(Country)CHINA:factor(Reactor_Type)PWR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)PWR NA
## factor(Country)FRANCE:factor(Reactor_Type)PWR NA
## factor(Country)GERMANY:factor(Reactor_Type)PWR NA
## factor(Country)INDIA:factor(Reactor_Type)PWR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)PWR NA
## factor(Country)JAPAN:factor(Reactor_Type)PWR 0.413
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)PWR NA
## factor(Country)MEXICO:factor(Reactor_Type)PWR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)PWR NA
## factor(Country)RUSSIA:factor(Reactor_Type)PWR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)PWR NA
## factor(Country)SWEDEN:factor(Reactor_Type)PWR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)PWR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)PWR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)PWR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)PWR NA
## factor(Country)BELARUS:Average_Concrete_Price NA
## factor(Country)BRAZIL:Average_Concrete_Price -0.043
## factor(Country)CANADA:Average_Concrete_Price 0.009
## factor(Country)CHINA:Average_Concrete_Price -0.933
## factor(Country)CZECH REPUBLIC:Average_Concrete_Price 0.341
## factor(Country)FRANCE:Average_Concrete_Price -0.123
## factor(Country)GERMANY:Average_Concrete_Price 0.147
## factor(Country)INDIA:Average_Concrete_Price -0.806
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:Average_Concrete_Price NA
## factor(Country)JAPAN:Average_Concrete_Price -0.351
## factor(Country)KOREA, REPUBLIC OF:Average_Concrete_Price -0.358
## factor(Country)MEXICO:Average_Concrete_Price NA
## factor(Country)PAKISTAN:Average_Concrete_Price -0.161
## factor(Country)RUSSIA:Average_Concrete_Price -1.062
## factor(Country)SLOVAKIA:Average_Concrete_Price -0.013
## factor(Country)SWEDEN:Average_Concrete_Price NA
## factor(Country)SWITZERLAND:Average_Concrete_Price NA
## factor(Country)UNITED ARAB EMIRATES:Average_Concrete_Price -0.194
## factor(Country)UNITED KINGDOM:Average_Concrete_Price NA
## factor(Country)UNITED STATES OF AMERICA:Average_Concrete_Price 2.407
## Pr(>|t|)
## (Intercept) 0.511588
## factor(Country)BELARUS 0.164137
## factor(Country)BRAZIL 0.706240
## factor(Country)CANADA 0.707776
## factor(Country)CHINA 0.473461
## factor(Country)CZECH REPUBLIC 0.785573
## factor(Country)FRANCE 0.917937
## factor(Country)GERMANY 0.957127
## factor(Country)INDIA 0.377261
## factor(Country)IRAN, ISLAMIC REPUBLIC OF 0.002082
## factor(Country)JAPAN 0.686673
## factor(Country)KOREA, REPUBLIC OF 0.839875
## factor(Country)MEXICO 0.916553
## factor(Country)PAKISTAN 0.971160
## factor(Country)RUSSIA 0.352097
## factor(Country)SLOVAKIA 0.975866
## factor(Country)SWEDEN 0.845888
## factor(Country)SWITZERLAND 0.495459
## factor(Country)UNITED ARAB EMIRATES 0.812446
## factor(Country)UNITED KINGDOM 0.765661
## factor(Country)UNITED STATES OF AMERICA 0.953126
## factor(Reactor_Type)FBR 0.368306
## factor(Reactor_Type)GCR 0.629354
## factor(Reactor_Type)HTGR 0.805317
## factor(Reactor_Type)LWGR 0.442142
## factor(Reactor_Type)PHWR 0.476622
## factor(Reactor_Type)PWR 0.241867
## Gross_Capacity_MWe 0.000709
## Duration 0.794719
## Average_Concrete_Price 0.262840
## factor(Country)BELARUS:factor(Reactor_Type)FBR NA
## factor(Country)BRAZIL:factor(Reactor_Type)FBR NA
## factor(Country)CANADA:factor(Reactor_Type)FBR NA
## factor(Country)CHINA:factor(Reactor_Type)FBR 0.404845
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)FBR NA
## factor(Country)FRANCE:factor(Reactor_Type)FBR 0.102201
## factor(Country)GERMANY:factor(Reactor_Type)FBR NA
## factor(Country)INDIA:factor(Reactor_Type)FBR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)FBR NA
## factor(Country)JAPAN:factor(Reactor_Type)FBR 0.064793
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)FBR NA
## factor(Country)MEXICO:factor(Reactor_Type)FBR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)FBR NA
## factor(Country)RUSSIA:factor(Reactor_Type)FBR 0.414081
## factor(Country)SLOVAKIA:factor(Reactor_Type)FBR NA
## factor(Country)SWEDEN:factor(Reactor_Type)FBR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)FBR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)FBR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)FBR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)FBR NA
## factor(Country)BELARUS:factor(Reactor_Type)GCR NA
## factor(Country)BRAZIL:factor(Reactor_Type)GCR NA
## factor(Country)CANADA:factor(Reactor_Type)GCR NA
## factor(Country)CHINA:factor(Reactor_Type)GCR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)GCR NA
## factor(Country)FRANCE:factor(Reactor_Type)GCR NA
## factor(Country)GERMANY:factor(Reactor_Type)GCR NA
## factor(Country)INDIA:factor(Reactor_Type)GCR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)GCR NA
## factor(Country)JAPAN:factor(Reactor_Type)GCR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)GCR NA
## factor(Country)MEXICO:factor(Reactor_Type)GCR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)GCR NA
## factor(Country)RUSSIA:factor(Reactor_Type)GCR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)GCR NA
## factor(Country)SWEDEN:factor(Reactor_Type)GCR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)GCR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)GCR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)GCR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)GCR NA
## factor(Country)BELARUS:factor(Reactor_Type)HTGR NA
## factor(Country)BRAZIL:factor(Reactor_Type)HTGR NA
## factor(Country)CANADA:factor(Reactor_Type)HTGR NA
## factor(Country)CHINA:factor(Reactor_Type)HTGR 0.00000000000000108
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)HTGR NA
## factor(Country)FRANCE:factor(Reactor_Type)HTGR NA
## factor(Country)GERMANY:factor(Reactor_Type)HTGR 0.366248
## factor(Country)INDIA:factor(Reactor_Type)HTGR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)HTGR NA
## factor(Country)JAPAN:factor(Reactor_Type)HTGR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)HTGR NA
## factor(Country)MEXICO:factor(Reactor_Type)HTGR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)HTGR NA
## factor(Country)RUSSIA:factor(Reactor_Type)HTGR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)HTGR NA
## factor(Country)SWEDEN:factor(Reactor_Type)HTGR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)HTGR NA
## factor(Country)BELARUS:factor(Reactor_Type)LWGR NA
## factor(Country)BRAZIL:factor(Reactor_Type)LWGR NA
## factor(Country)CANADA:factor(Reactor_Type)LWGR NA
## factor(Country)CHINA:factor(Reactor_Type)LWGR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)LWGR NA
## factor(Country)FRANCE:factor(Reactor_Type)LWGR NA
## factor(Country)GERMANY:factor(Reactor_Type)LWGR NA
## factor(Country)INDIA:factor(Reactor_Type)LWGR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)LWGR NA
## factor(Country)JAPAN:factor(Reactor_Type)LWGR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)LWGR NA
## factor(Country)MEXICO:factor(Reactor_Type)LWGR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)LWGR NA
## factor(Country)RUSSIA:factor(Reactor_Type)LWGR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)LWGR NA
## factor(Country)SWEDEN:factor(Reactor_Type)LWGR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)LWGR NA
## factor(Country)BELARUS:factor(Reactor_Type)PHWR NA
## factor(Country)BRAZIL:factor(Reactor_Type)PHWR NA
## factor(Country)CANADA:factor(Reactor_Type)PHWR 0.363843
## factor(Country)CHINA:factor(Reactor_Type)PHWR 0.434419
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)PHWR NA
## factor(Country)FRANCE:factor(Reactor_Type)PHWR NA
## factor(Country)GERMANY:factor(Reactor_Type)PHWR NA
## factor(Country)INDIA:factor(Reactor_Type)PHWR 0.217813
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)PHWR NA
## factor(Country)JAPAN:factor(Reactor_Type)PHWR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)PHWR NA
## factor(Country)MEXICO:factor(Reactor_Type)PHWR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)PHWR NA
## factor(Country)RUSSIA:factor(Reactor_Type)PHWR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)PHWR NA
## factor(Country)SWEDEN:factor(Reactor_Type)PHWR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)PHWR NA
## factor(Country)BELARUS:factor(Reactor_Type)PWR NA
## factor(Country)BRAZIL:factor(Reactor_Type)PWR NA
## factor(Country)CANADA:factor(Reactor_Type)PWR NA
## factor(Country)CHINA:factor(Reactor_Type)PWR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)PWR NA
## factor(Country)FRANCE:factor(Reactor_Type)PWR NA
## factor(Country)GERMANY:factor(Reactor_Type)PWR NA
## factor(Country)INDIA:factor(Reactor_Type)PWR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)PWR NA
## factor(Country)JAPAN:factor(Reactor_Type)PWR 0.680385
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)PWR NA
## factor(Country)MEXICO:factor(Reactor_Type)PWR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)PWR NA
## factor(Country)RUSSIA:factor(Reactor_Type)PWR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)PWR NA
## factor(Country)SWEDEN:factor(Reactor_Type)PWR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)PWR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)PWR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)PWR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)PWR NA
## factor(Country)BELARUS:Average_Concrete_Price NA
## factor(Country)BRAZIL:Average_Concrete_Price 0.965729
## factor(Country)CANADA:Average_Concrete_Price 0.992445
## factor(Country)CHINA:Average_Concrete_Price 0.352110
## factor(Country)CZECH REPUBLIC:Average_Concrete_Price 0.733737
## factor(Country)FRANCE:Average_Concrete_Price 0.902255
## factor(Country)GERMANY:Average_Concrete_Price 0.883551
## factor(Country)INDIA:Average_Concrete_Price 0.421286
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:Average_Concrete_Price NA
## factor(Country)JAPAN:Average_Concrete_Price 0.725725
## factor(Country)KOREA, REPUBLIC OF:Average_Concrete_Price 0.721018
## factor(Country)MEXICO:Average_Concrete_Price NA
## factor(Country)PAKISTAN:Average_Concrete_Price 0.872349
## factor(Country)RUSSIA:Average_Concrete_Price 0.289350
## factor(Country)SLOVAKIA:Average_Concrete_Price 0.989484
## factor(Country)SWEDEN:Average_Concrete_Price NA
## factor(Country)SWITZERLAND:Average_Concrete_Price NA
## factor(Country)UNITED ARAB EMIRATES:Average_Concrete_Price 0.846155
## factor(Country)UNITED KINGDOM:Average_Concrete_Price NA
## factor(Country)UNITED STATES OF AMERICA:Average_Concrete_Price 0.016945
##
## (Intercept)
## factor(Country)BELARUS
## factor(Country)BRAZIL
## factor(Country)CANADA
## factor(Country)CHINA
## factor(Country)CZECH REPUBLIC
## factor(Country)FRANCE
## factor(Country)GERMANY
## factor(Country)INDIA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF **
## factor(Country)JAPAN
## factor(Country)KOREA, REPUBLIC OF
## factor(Country)MEXICO
## factor(Country)PAKISTAN
## factor(Country)RUSSIA
## factor(Country)SLOVAKIA
## factor(Country)SWEDEN
## factor(Country)SWITZERLAND
## factor(Country)UNITED ARAB EMIRATES
## factor(Country)UNITED KINGDOM
## factor(Country)UNITED STATES OF AMERICA
## factor(Reactor_Type)FBR
## factor(Reactor_Type)GCR
## factor(Reactor_Type)HTGR
## factor(Reactor_Type)LWGR
## factor(Reactor_Type)PHWR
## factor(Reactor_Type)PWR
## Gross_Capacity_MWe ***
## Duration
## Average_Concrete_Price
## factor(Country)BELARUS:factor(Reactor_Type)FBR
## factor(Country)BRAZIL:factor(Reactor_Type)FBR
## factor(Country)CANADA:factor(Reactor_Type)FBR
## factor(Country)CHINA:factor(Reactor_Type)FBR
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)FBR
## factor(Country)FRANCE:factor(Reactor_Type)FBR
## factor(Country)GERMANY:factor(Reactor_Type)FBR
## factor(Country)INDIA:factor(Reactor_Type)FBR
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)FBR
## factor(Country)JAPAN:factor(Reactor_Type)FBR .
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)FBR
## factor(Country)MEXICO:factor(Reactor_Type)FBR
## factor(Country)PAKISTAN:factor(Reactor_Type)FBR
## factor(Country)RUSSIA:factor(Reactor_Type)FBR
## factor(Country)SLOVAKIA:factor(Reactor_Type)FBR
## factor(Country)SWEDEN:factor(Reactor_Type)FBR
## factor(Country)SWITZERLAND:factor(Reactor_Type)FBR
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)FBR
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)FBR
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)FBR
## factor(Country)BELARUS:factor(Reactor_Type)GCR
## factor(Country)BRAZIL:factor(Reactor_Type)GCR
## factor(Country)CANADA:factor(Reactor_Type)GCR
## factor(Country)CHINA:factor(Reactor_Type)GCR
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)GCR
## factor(Country)FRANCE:factor(Reactor_Type)GCR
## factor(Country)GERMANY:factor(Reactor_Type)GCR
## factor(Country)INDIA:factor(Reactor_Type)GCR
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)GCR
## factor(Country)JAPAN:factor(Reactor_Type)GCR
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)GCR
## factor(Country)MEXICO:factor(Reactor_Type)GCR
## factor(Country)PAKISTAN:factor(Reactor_Type)GCR
## factor(Country)RUSSIA:factor(Reactor_Type)GCR
## factor(Country)SLOVAKIA:factor(Reactor_Type)GCR
## factor(Country)SWEDEN:factor(Reactor_Type)GCR
## factor(Country)SWITZERLAND:factor(Reactor_Type)GCR
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)GCR
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)GCR
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)GCR
## factor(Country)BELARUS:factor(Reactor_Type)HTGR
## factor(Country)BRAZIL:factor(Reactor_Type)HTGR
## factor(Country)CANADA:factor(Reactor_Type)HTGR
## factor(Country)CHINA:factor(Reactor_Type)HTGR ***
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)HTGR
## factor(Country)FRANCE:factor(Reactor_Type)HTGR
## factor(Country)GERMANY:factor(Reactor_Type)HTGR
## factor(Country)INDIA:factor(Reactor_Type)HTGR
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)HTGR
## factor(Country)JAPAN:factor(Reactor_Type)HTGR
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)HTGR
## factor(Country)MEXICO:factor(Reactor_Type)HTGR
## factor(Country)PAKISTAN:factor(Reactor_Type)HTGR
## factor(Country)RUSSIA:factor(Reactor_Type)HTGR
## factor(Country)SLOVAKIA:factor(Reactor_Type)HTGR
## factor(Country)SWEDEN:factor(Reactor_Type)HTGR
## factor(Country)SWITZERLAND:factor(Reactor_Type)HTGR
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)HTGR
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)HTGR
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)HTGR
## factor(Country)BELARUS:factor(Reactor_Type)LWGR
## factor(Country)BRAZIL:factor(Reactor_Type)LWGR
## factor(Country)CANADA:factor(Reactor_Type)LWGR
## factor(Country)CHINA:factor(Reactor_Type)LWGR
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)LWGR
## factor(Country)FRANCE:factor(Reactor_Type)LWGR
## factor(Country)GERMANY:factor(Reactor_Type)LWGR
## factor(Country)INDIA:factor(Reactor_Type)LWGR
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)LWGR
## factor(Country)JAPAN:factor(Reactor_Type)LWGR
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)LWGR
## factor(Country)MEXICO:factor(Reactor_Type)LWGR
## factor(Country)PAKISTAN:factor(Reactor_Type)LWGR
## factor(Country)RUSSIA:factor(Reactor_Type)LWGR
## factor(Country)SLOVAKIA:factor(Reactor_Type)LWGR
## factor(Country)SWEDEN:factor(Reactor_Type)LWGR
## factor(Country)SWITZERLAND:factor(Reactor_Type)LWGR
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)LWGR
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)LWGR
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)LWGR
## factor(Country)BELARUS:factor(Reactor_Type)PHWR
## factor(Country)BRAZIL:factor(Reactor_Type)PHWR
## factor(Country)CANADA:factor(Reactor_Type)PHWR
## factor(Country)CHINA:factor(Reactor_Type)PHWR
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)PHWR
## factor(Country)FRANCE:factor(Reactor_Type)PHWR
## factor(Country)GERMANY:factor(Reactor_Type)PHWR
## factor(Country)INDIA:factor(Reactor_Type)PHWR
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)PHWR
## factor(Country)JAPAN:factor(Reactor_Type)PHWR
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)PHWR
## factor(Country)MEXICO:factor(Reactor_Type)PHWR
## factor(Country)PAKISTAN:factor(Reactor_Type)PHWR
## factor(Country)RUSSIA:factor(Reactor_Type)PHWR
## factor(Country)SLOVAKIA:factor(Reactor_Type)PHWR
## factor(Country)SWEDEN:factor(Reactor_Type)PHWR
## factor(Country)SWITZERLAND:factor(Reactor_Type)PHWR
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)PHWR
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)PHWR
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)PHWR
## factor(Country)BELARUS:factor(Reactor_Type)PWR
## factor(Country)BRAZIL:factor(Reactor_Type)PWR
## factor(Country)CANADA:factor(Reactor_Type)PWR
## factor(Country)CHINA:factor(Reactor_Type)PWR
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)PWR
## factor(Country)FRANCE:factor(Reactor_Type)PWR
## factor(Country)GERMANY:factor(Reactor_Type)PWR
## factor(Country)INDIA:factor(Reactor_Type)PWR
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)PWR
## factor(Country)JAPAN:factor(Reactor_Type)PWR
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)PWR
## factor(Country)MEXICO:factor(Reactor_Type)PWR
## factor(Country)PAKISTAN:factor(Reactor_Type)PWR
## factor(Country)RUSSIA:factor(Reactor_Type)PWR
## factor(Country)SLOVAKIA:factor(Reactor_Type)PWR
## factor(Country)SWEDEN:factor(Reactor_Type)PWR
## factor(Country)SWITZERLAND:factor(Reactor_Type)PWR
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)PWR
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)PWR
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)PWR
## factor(Country)BELARUS:Average_Concrete_Price
## factor(Country)BRAZIL:Average_Concrete_Price
## factor(Country)CANADA:Average_Concrete_Price
## factor(Country)CHINA:Average_Concrete_Price
## factor(Country)CZECH REPUBLIC:Average_Concrete_Price
## factor(Country)FRANCE:Average_Concrete_Price
## factor(Country)GERMANY:Average_Concrete_Price
## factor(Country)INDIA:Average_Concrete_Price
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:Average_Concrete_Price
## factor(Country)JAPAN:Average_Concrete_Price
## factor(Country)KOREA, REPUBLIC OF:Average_Concrete_Price
## factor(Country)MEXICO:Average_Concrete_Price
## factor(Country)PAKISTAN:Average_Concrete_Price
## factor(Country)RUSSIA:Average_Concrete_Price
## factor(Country)SLOVAKIA:Average_Concrete_Price
## factor(Country)SWEDEN:Average_Concrete_Price
## factor(Country)SWITZERLAND:Average_Concrete_Price
## factor(Country)UNITED ARAB EMIRATES:Average_Concrete_Price
## factor(Country)UNITED KINGDOM:Average_Concrete_Price
## factor(Country)UNITED STATES OF AMERICA:Average_Concrete_Price *
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Residual standard error: 1.286 on 207 degrees of freedom
## Multiple R-squared: 0.7598, Adjusted R-squared: 0.6983
## F-statistic: 12.36 on 53 and 207 DF, p-value: < 0.00000000000000022
# As we can see from above t-test, we have discovered that factor(Country)UNITED STATES OF AMERICA*Average_Concrete_Price AND factor(Country)CHINA*factor(Reactor_Type)HTGR independent variables are also quite statistically significant since their p-value < 0.05. Therefore we have to reject the NULL Hypothesis for those variables.
# Also note that the Adjusted R-Squared of our interaction model is 0.6983 as opposed to 0.4784 for our purely additive model. Therefore our interaction model is superior and we must accept this model. We can observe interaction effect.
# Doing Partial F-Test using ANOVA.
interact.new.nuclear.regression.model.reduced<-lm(Cost_Billion_Dollars~(factor(Country)+factor(Reactor_Type)+Gross_Capacity_MWe+Duration+Average_Concrete_Price)^2, data = nuclear.df)
interact.new.nuclear.regression.model.reduced.cleaned<-lm(Cost_Billion_Dollars~factor(Country)+factor(Reactor_Type)+Gross_Capacity_MWe+Duration+Average_Concrete_Price+factor(Country)*factor(Reactor_Type)+factor(Country)*Average_Concrete_Price , data = nuclear.df) # Dropping all useless predictor variables.
anova(interact.new.nuclear.regression.model.reduced.cleaned, interact.new.nuclear.regression.model.reduced) # test if Ho: <List of insignificant variables> = 0
## Analysis of Variance Table
##
## Model 1: Cost_Billion_Dollars ~ factor(Country) + factor(Reactor_Type) +
## Gross_Capacity_MWe + Duration + Average_Concrete_Price +
## factor(Country) * factor(Reactor_Type) + factor(Country) *
## Average_Concrete_Price
## Model 2: Cost_Billion_Dollars ~ (factor(Country) + factor(Reactor_Type) +
## Gross_Capacity_MWe + Duration + Average_Concrete_Price)^2
## Res.Df RSS Df Sum of Sq F Pr(>F)
## 1 207 342.49
## 2 176 313.42 31 29.07 0.5266 0.9816
print("The Partial F test cleary states that we cannot reject the NULL hypothesis, therefore it was a correct decision to remove all junk predictor variables.")
## [1] "The Partial F test cleary states that we cannot reject the NULL hypothesis, therefore it was a correct decision to remove all junk predictor variables."
# Interpreting the result from Cleaned Interaction Model.
# Final Equation formed: -
# Cost_Billion_Dollars = -2.0353231 + 9.5331245*Country(IRAN) + 0.0013776*Gross_Capacity_MWe -0.0085935*Duration + 0.0214370*Average_Concrete_Price + 14.1141829*Country(CHINA)*Reactor_Type(HTGR) + 0.0436586*Country(USA)*Average_Concrete_Price.
# 4 sub-models can be formed from the above equation. It depends upon the value of Country and Reactor_Type predictor variable; which sub model shall be used in the end.
# Country can have either Iran, China or USA value.
# Reactor_Type can have either value of HTGR or not.
# Defining and interpreting each sub model: -
# 1) Country = Every country except for Iran, China and USA, Reactor_Type = Can be any reactor type: -
# Cost_Billion_Dollars = -2.0353231 + 0.0013776*Gross_Capacity_MWe -0.0085935*Duration + 0.0214370*Average_Concrete_Price.
# Interpretation : -
# 1) For every increase in Gross_Capacity_MWe by 1 MWe, there is an increase of 0.0013776 Billion $ of the reactor cost; keeping all other variables constant.
# 2) For every 1 year increase in the Duration, there is an decrease of 0.0085935 Billion $ of the reactor cost; keeping all other variables constant.
# 3) For every increase in Average_Concrete_Price by 1 unit, there is an increase of 0.0214370 Billion $ of the reactor cost; keeping all other variables constant.
# 2) Country = IRAN, Reactor_Type = Can be any reactor type: -
# Cost_Billion_Dollars = -2.0353231 + 9.5331245*Country(IRAN) + 0.0013776*Gross_Capacity_MWe -0.0085935*Duration + 0.0214370*Average_Concrete_Price
# Interpretation : -
# 1) For every increase in Gross_Capacity_MWe by 1 MWe, there is an increase of 0.0013776 Billion $ of the reactor cost; keeping all other variables constant.
# 2) For every 1 year increase in the Duration, there is an decrease of 0.0085935 Billion $ of the reactor cost; keeping all other variables constant.
# 3) For every increase in Average_Concrete_Price by 1 unit, there is an increase of 0.0214370 Billion $ of the reactor cost; keeping all other variables constant.
# 4) Whenever a nuclear reactor is made in IRAN, the reactor cost 9.5331245 Billion $ more.
# 3) Country = USA, Reactor_Type = Can be any reactor type: -
# Cost_Billion_Dollars = -2.0353231 + 0.0013776*Gross_Capacity_MWe -0.0085935*Duration + 0.0214370*Average_Concrete_Price + 0.0436586*Country(USA)*Average_Concrete_Price.
# This can we re-written as: -
# Cost_Billion_Dollars = -2.0353231 + 0.0013776*Gross_Capacity_MWe -0.0085935*Duration + (0.0214370 + 0.0436586*Country(USA))*Average_Concrete_Price.
# Since Country(USA) == TRUE, Therefore value of Country(USA) = 1. Hence: -
# Cost_Billion_Dollars = -2.0353231 + 0.0013776*Gross_Capacity_MWe -0.0085935*Duration + 0.0650956*Average_Concrete_Price.
# Interpretation : -
# 1) For every increase in Gross_Capacity_MWe by 1 MWe, there is an increase of 0.0013776 Billion $ of the reactor cost; keeping all other variables constant.
# 2) For every 1 year increase in the Duration, there is an decrease of 0.0085935 Billion $ of the reactor cost; keeping all other variables constant.
# 3) For every increase in Average_Concrete_Price by 1 unit, there is an increase of 0.0650956 Billion $ of the reactor cost; keeping all other variables constant.
# 4) Country = CHINA, Reactor_Type = HTGR : -
# Cost_Billion_Dollars = -2.0353231 + 0.0013776*Gross_Capacity_MWe -0.0085935*Duration + 0.0214370*Average_Concrete_Price + 14.1141829*Country(CHINA)*Reactor_Type(HTGR).
# Interpretation : -
# 1) For every increase in Gross_Capacity_MWe by 1 MWe, there is an increase of 0.0013776 Billion $ of the reactor cost; keeping all other variables constant.
# 2) For every 1 year increase in the Duration, there is an decrease of 0.0085935 Billion $ of the reactor cost; keeping all other variables constant.
# 3) For every increase in Average_Concrete_Price by 1 unit, there is an increase of 0.0214370 Billion $ of the reactor cost; keeping all other variables constant.
# 4) When CHINA is making a nuclear reactor of type HTGR, then it costs them 14.1141829 Billion dollars more to construct that reactor.
Higher Order Model
# We shall now try to make a higher order model by keeping our interaction model as our foundation.
# We shall now use GGPairs for our higher order model.
# GGPairs is used only after making your basement. i.e. reduced model.
# We shall now check all pairwise combinations of predictors and look at the correlation between them using GGPairs().
nuclear.df.subset<-data.frame(nuclear.df$Cost_Billion_Dollars, nuclear.df$Gross_Capacity_MWe, nuclear.df$Duration, nuclear.df$Average_Concrete_Price)
head(nuclear.df.subset, 4)
## nuclear.df.Cost_Billion_Dollars nuclear.df.Gross_Capacity_MWe
## 1 1.261 903
## 2 1.261 1065
## 3 4.260 959
## 4 4.260 958
## nuclear.df.Duration nuclear.df.Average_Concrete_Price
## 1 6 37.12333
## 2 10 41.70000
## 3 6 44.66237
## 4 13 83.84615
tail(nuclear.df.subset, 4)
## nuclear.df.Cost_Billion_Dollars nuclear.df.Gross_Capacity_MWe
## 258 1.7 1086
## 259 1.7 1086
## 260 1.7 1086
## 261 1.7 1086
## nuclear.df.Duration nuclear.df.Average_Concrete_Price
## 258 5 223.21
## 259 4 233.59
## 260 5 247.36
## 261 5 256.62
ggpairs(nuclear.df.subset)

#LOESS or LOWESS: LOcally WEighted Scatter-plot Smoother
ggpairs(nuclear.df.subset, lower = list(continuous = "smooth_loess", combo =
"facethist", discrete = "facetbar", na = "na"))

print("In our interact model, we should start by adding Higher orders of Gross_Capacity_MWe because it has the higest correlation with response variable 'Cost'. (0.436)")
## [1] "In our interact model, we should start by adding Higher orders of Gross_Capacity_MWe because it has the higest correlation with response variable 'Cost'. (0.436)"
# Adding Gross_Capacity_MWe square to model.
quad.higher.model<-lm(Cost_Billion_Dollars~factor(Country)+factor(Reactor_Type)+Gross_Capacity_MWe+I(Gross_Capacity_MWe^2)+Duration+Average_Concrete_Price+factor(Country)*factor(Reactor_Type)+factor(Country)*Average_Concrete_Price, data = nuclear.df)
summary(quad.higher.model)
##
## Call:
## lm(formula = Cost_Billion_Dollars ~ factor(Country) + factor(Reactor_Type) +
## Gross_Capacity_MWe + I(Gross_Capacity_MWe^2) + Duration +
## Average_Concrete_Price + factor(Country) * factor(Reactor_Type) +
## factor(Country) * Average_Concrete_Price, data = nuclear.df)
##
## Residuals:
## Min 1Q Median 3Q Max
## -4.3290 -0.3029 -0.0073 0.2439 11.7868
##
## Coefficients: (116 not defined because of singularities)
## Estimate
## (Intercept) -1.5775346416
## factor(Country)BELARUS 5.7101121172
## factor(Country)BRAZIL 2.3211830160
## factor(Country)CANADA 1.1026854063
## factor(Country)CHINA 2.5538657520
## factor(Country)CZECH REPUBLIC -1.5121331032
## factor(Country)FRANCE 1.2002983020
## factor(Country)GERMANY -1.1584645349
## factor(Country)INDIA 3.4332557344
## factor(Country)IRAN, ISLAMIC REPUBLIC OF 9.3671867023
## factor(Country)JAPAN 1.8891605337
## factor(Country)KOREA, REPUBLIC OF 3.3153430425
## factor(Country)MEXICO -0.3573492489
## factor(Country)PAKISTAN -0.1653225972
## factor(Country)RUSSIA 3.2758257470
## factor(Country)SLOVAKIA 4.0445260475
## factor(Country)SWEDEN -0.7463569151
## factor(Country)SWITZERLAND 1.8213710243
## factor(Country)UNITED ARAB EMIRATES 5.6292098801
## factor(Country)UNITED KINGDOM 0.8488408192
## factor(Country)UNITED STATES OF AMERICA -0.1543893970
## factor(Reactor_Type)FBR 0.5579654460
## factor(Reactor_Type)GCR 0.9191625140
## factor(Reactor_Type)HTGR 0.0277790944
## factor(Reactor_Type)LWGR -1.4812448302
## factor(Reactor_Type)PHWR 1.7542020897
## factor(Reactor_Type)PWR -0.2494910171
## Gross_Capacity_MWe -0.0000504420
## I(Gross_Capacity_MWe^2) 0.0000009181
## Duration -0.0104009032
## Average_Concrete_Price 0.0232116305
## factor(Country)BELARUS:factor(Reactor_Type)FBR NA
## factor(Country)BRAZIL:factor(Reactor_Type)FBR NA
## factor(Country)CANADA:factor(Reactor_Type)FBR NA
## factor(Country)CHINA:factor(Reactor_Type)FBR -1.3888334654
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)FBR NA
## factor(Country)FRANCE:factor(Reactor_Type)FBR 8.1768840187
## factor(Country)GERMANY:factor(Reactor_Type)FBR NA
## factor(Country)INDIA:factor(Reactor_Type)FBR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)FBR NA
## factor(Country)JAPAN:factor(Reactor_Type)FBR 9.3850632952
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)FBR NA
## factor(Country)MEXICO:factor(Reactor_Type)FBR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)FBR NA
## factor(Country)RUSSIA:factor(Reactor_Type)FBR -0.6842035155
## factor(Country)SLOVAKIA:factor(Reactor_Type)FBR NA
## factor(Country)SWEDEN:factor(Reactor_Type)FBR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)FBR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)FBR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)FBR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)FBR NA
## factor(Country)BELARUS:factor(Reactor_Type)GCR NA
## factor(Country)BRAZIL:factor(Reactor_Type)GCR NA
## factor(Country)CANADA:factor(Reactor_Type)GCR NA
## factor(Country)CHINA:factor(Reactor_Type)GCR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)GCR NA
## factor(Country)FRANCE:factor(Reactor_Type)GCR NA
## factor(Country)GERMANY:factor(Reactor_Type)GCR NA
## factor(Country)INDIA:factor(Reactor_Type)GCR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)GCR NA
## factor(Country)JAPAN:factor(Reactor_Type)GCR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)GCR NA
## factor(Country)MEXICO:factor(Reactor_Type)GCR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)GCR NA
## factor(Country)RUSSIA:factor(Reactor_Type)GCR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)GCR NA
## factor(Country)SWEDEN:factor(Reactor_Type)GCR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)GCR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)GCR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)GCR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)GCR NA
## factor(Country)BELARUS:factor(Reactor_Type)HTGR NA
## factor(Country)BRAZIL:factor(Reactor_Type)HTGR NA
## factor(Country)CANADA:factor(Reactor_Type)HTGR NA
## factor(Country)CHINA:factor(Reactor_Type)HTGR 14.2677565350
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)HTGR NA
## factor(Country)FRANCE:factor(Reactor_Type)HTGR NA
## factor(Country)GERMANY:factor(Reactor_Type)HTGR 2.3697192003
## factor(Country)INDIA:factor(Reactor_Type)HTGR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)HTGR NA
## factor(Country)JAPAN:factor(Reactor_Type)HTGR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)HTGR NA
## factor(Country)MEXICO:factor(Reactor_Type)HTGR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)HTGR NA
## factor(Country)RUSSIA:factor(Reactor_Type)HTGR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)HTGR NA
## factor(Country)SWEDEN:factor(Reactor_Type)HTGR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)HTGR NA
## factor(Country)BELARUS:factor(Reactor_Type)LWGR NA
## factor(Country)BRAZIL:factor(Reactor_Type)LWGR NA
## factor(Country)CANADA:factor(Reactor_Type)LWGR NA
## factor(Country)CHINA:factor(Reactor_Type)LWGR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)LWGR NA
## factor(Country)FRANCE:factor(Reactor_Type)LWGR NA
## factor(Country)GERMANY:factor(Reactor_Type)LWGR NA
## factor(Country)INDIA:factor(Reactor_Type)LWGR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)LWGR NA
## factor(Country)JAPAN:factor(Reactor_Type)LWGR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)LWGR NA
## factor(Country)MEXICO:factor(Reactor_Type)LWGR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)LWGR NA
## factor(Country)RUSSIA:factor(Reactor_Type)LWGR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)LWGR NA
## factor(Country)SWEDEN:factor(Reactor_Type)LWGR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)LWGR NA
## factor(Country)BELARUS:factor(Reactor_Type)PHWR NA
## factor(Country)BRAZIL:factor(Reactor_Type)PHWR NA
## factor(Country)CANADA:factor(Reactor_Type)PHWR -2.4034633991
## factor(Country)CHINA:factor(Reactor_Type)PHWR -1.9748915217
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)PHWR NA
## factor(Country)FRANCE:factor(Reactor_Type)PHWR NA
## factor(Country)GERMANY:factor(Reactor_Type)PHWR NA
## factor(Country)INDIA:factor(Reactor_Type)PHWR -3.6309679616
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)PHWR NA
## factor(Country)JAPAN:factor(Reactor_Type)PHWR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)PHWR NA
## factor(Country)MEXICO:factor(Reactor_Type)PHWR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)PHWR NA
## factor(Country)RUSSIA:factor(Reactor_Type)PHWR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)PHWR NA
## factor(Country)SWEDEN:factor(Reactor_Type)PHWR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)PHWR NA
## factor(Country)BELARUS:factor(Reactor_Type)PWR NA
## factor(Country)BRAZIL:factor(Reactor_Type)PWR NA
## factor(Country)CANADA:factor(Reactor_Type)PWR NA
## factor(Country)CHINA:factor(Reactor_Type)PWR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)PWR NA
## factor(Country)FRANCE:factor(Reactor_Type)PWR NA
## factor(Country)GERMANY:factor(Reactor_Type)PWR NA
## factor(Country)INDIA:factor(Reactor_Type)PWR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)PWR NA
## factor(Country)JAPAN:factor(Reactor_Type)PWR 1.5208135501
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)PWR NA
## factor(Country)MEXICO:factor(Reactor_Type)PWR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)PWR NA
## factor(Country)RUSSIA:factor(Reactor_Type)PWR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)PWR NA
## factor(Country)SWEDEN:factor(Reactor_Type)PWR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)PWR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)PWR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)PWR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)PWR NA
## factor(Country)BELARUS:Average_Concrete_Price NA
## factor(Country)BRAZIL:Average_Concrete_Price -0.0099053249
## factor(Country)CANADA:Average_Concrete_Price -0.0006618339
## factor(Country)CHINA:Average_Concrete_Price -0.0212915264
## factor(Country)CZECH REPUBLIC:Average_Concrete_Price 0.0138858924
## factor(Country)FRANCE:Average_Concrete_Price -0.0187425213
## factor(Country)GERMANY:Average_Concrete_Price 0.0151544013
## factor(Country)INDIA:Average_Concrete_Price -0.0193455506
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:Average_Concrete_Price NA
## factor(Country)JAPAN:Average_Concrete_Price -0.0270792492
## factor(Country)KOREA, REPUBLIC OF:Average_Concrete_Price -0.0236495836
## factor(Country)MEXICO:Average_Concrete_Price NA
## factor(Country)PAKISTAN:Average_Concrete_Price -0.0046512833
## factor(Country)RUSSIA:Average_Concrete_Price -0.0245240812
## factor(Country)SLOVAKIA:Average_Concrete_Price -0.0163726802
## factor(Country)SWEDEN:Average_Concrete_Price NA
## factor(Country)SWITZERLAND:Average_Concrete_Price NA
## factor(Country)UNITED ARAB EMIRATES:Average_Concrete_Price -0.0207726990
## factor(Country)UNITED KINGDOM:Average_Concrete_Price NA
## factor(Country)UNITED STATES OF AMERICA:Average_Concrete_Price 0.0403021000
## Std. Error
## (Intercept) 3.1070833535
## factor(Country)BELARUS 4.4995186090
## factor(Country)BRAZIL 4.9525925224
## factor(Country)CANADA 3.3701781145
## factor(Country)CHINA 3.3392691009
## factor(Country)CZECH REPUBLIC 5.4930925688
## factor(Country)FRANCE 15.6818629189
## factor(Country)GERMANY 4.8596772691
## factor(Country)INDIA 3.8539041000
## factor(Country)IRAN, ISLAMIC REPUBLIC OF 3.0536838997
## factor(Country)JAPAN 4.4164767717
## factor(Country)KOREA, REPUBLIC OF 9.3356773672
## factor(Country)MEXICO 2.9921283345
## factor(Country)PAKISTAN 2.2108675728
## factor(Country)RUSSIA 3.3793912582
## factor(Country)SLOVAKIA 137.8236286780
## factor(Country)SWEDEN 1.8565345239
## factor(Country)SWITZERLAND 3.0302012100
## factor(Country)UNITED ARAB EMIRATES 26.1592235656
## factor(Country)UNITED KINGDOM 3.3160253753
## factor(Country)UNITED STATES OF AMERICA 3.1072778727
## factor(Reactor_Type)FBR 1.0118809550
## factor(Reactor_Type)GCR 2.0563090188
## factor(Reactor_Type)HTGR 0.9811083517
## factor(Reactor_Type)LWGR 1.3206540265
## factor(Reactor_Type)PHWR 2.5838126683
## factor(Reactor_Type)PWR 0.2632693778
## Gross_Capacity_MWe 0.0011173940
## I(Gross_Capacity_MWe^2) 0.0000006708
## Duration 0.0329426668
## Average_Concrete_Price 0.0190971009
## factor(Country)BELARUS:factor(Reactor_Type)FBR NA
## factor(Country)BRAZIL:factor(Reactor_Type)FBR NA
## factor(Country)CANADA:factor(Reactor_Type)FBR NA
## factor(Country)CHINA:factor(Reactor_Type)FBR 1.6210680149
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)FBR NA
## factor(Country)FRANCE:factor(Reactor_Type)FBR 4.5602281005
## factor(Country)GERMANY:factor(Reactor_Type)FBR NA
## factor(Country)INDIA:factor(Reactor_Type)FBR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)FBR NA
## factor(Country)JAPAN:factor(Reactor_Type)FBR 4.9897104632
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)FBR NA
## factor(Country)MEXICO:factor(Reactor_Type)FBR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)FBR NA
## factor(Country)RUSSIA:factor(Reactor_Type)FBR 1.4607701188
## factor(Country)SLOVAKIA:factor(Reactor_Type)FBR NA
## factor(Country)SWEDEN:factor(Reactor_Type)FBR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)FBR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)FBR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)FBR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)FBR NA
## factor(Country)BELARUS:factor(Reactor_Type)GCR NA
## factor(Country)BRAZIL:factor(Reactor_Type)GCR NA
## factor(Country)CANADA:factor(Reactor_Type)GCR NA
## factor(Country)CHINA:factor(Reactor_Type)GCR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)GCR NA
## factor(Country)FRANCE:factor(Reactor_Type)GCR NA
## factor(Country)GERMANY:factor(Reactor_Type)GCR NA
## factor(Country)INDIA:factor(Reactor_Type)GCR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)GCR NA
## factor(Country)JAPAN:factor(Reactor_Type)GCR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)GCR NA
## factor(Country)MEXICO:factor(Reactor_Type)GCR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)GCR NA
## factor(Country)RUSSIA:factor(Reactor_Type)GCR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)GCR NA
## factor(Country)SWEDEN:factor(Reactor_Type)GCR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)GCR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)GCR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)GCR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)GCR NA
## factor(Country)BELARUS:factor(Reactor_Type)HTGR NA
## factor(Country)BRAZIL:factor(Reactor_Type)HTGR NA
## factor(Country)CANADA:factor(Reactor_Type)HTGR NA
## factor(Country)CHINA:factor(Reactor_Type)HTGR 1.6239628924
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)HTGR NA
## factor(Country)FRANCE:factor(Reactor_Type)HTGR NA
## factor(Country)GERMANY:factor(Reactor_Type)HTGR 2.1789135256
## factor(Country)INDIA:factor(Reactor_Type)HTGR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)HTGR NA
## factor(Country)JAPAN:factor(Reactor_Type)HTGR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)HTGR NA
## factor(Country)MEXICO:factor(Reactor_Type)HTGR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)HTGR NA
## factor(Country)RUSSIA:factor(Reactor_Type)HTGR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)HTGR NA
## factor(Country)SWEDEN:factor(Reactor_Type)HTGR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)HTGR NA
## factor(Country)BELARUS:factor(Reactor_Type)LWGR NA
## factor(Country)BRAZIL:factor(Reactor_Type)LWGR NA
## factor(Country)CANADA:factor(Reactor_Type)LWGR NA
## factor(Country)CHINA:factor(Reactor_Type)LWGR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)LWGR NA
## factor(Country)FRANCE:factor(Reactor_Type)LWGR NA
## factor(Country)GERMANY:factor(Reactor_Type)LWGR NA
## factor(Country)INDIA:factor(Reactor_Type)LWGR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)LWGR NA
## factor(Country)JAPAN:factor(Reactor_Type)LWGR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)LWGR NA
## factor(Country)MEXICO:factor(Reactor_Type)LWGR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)LWGR NA
## factor(Country)RUSSIA:factor(Reactor_Type)LWGR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)LWGR NA
## factor(Country)SWEDEN:factor(Reactor_Type)LWGR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)LWGR NA
## factor(Country)BELARUS:factor(Reactor_Type)PHWR NA
## factor(Country)BRAZIL:factor(Reactor_Type)PHWR NA
## factor(Country)CANADA:factor(Reactor_Type)PHWR 2.9271315792
## factor(Country)CHINA:factor(Reactor_Type)PHWR 2.7751703165
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)PHWR NA
## factor(Country)FRANCE:factor(Reactor_Type)PHWR NA
## factor(Country)GERMANY:factor(Reactor_Type)PHWR NA
## factor(Country)INDIA:factor(Reactor_Type)PHWR 2.8535693053
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)PHWR NA
## factor(Country)JAPAN:factor(Reactor_Type)PHWR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)PHWR NA
## factor(Country)MEXICO:factor(Reactor_Type)PHWR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)PHWR NA
## factor(Country)RUSSIA:factor(Reactor_Type)PHWR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)PHWR NA
## factor(Country)SWEDEN:factor(Reactor_Type)PHWR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)PHWR NA
## factor(Country)BELARUS:factor(Reactor_Type)PWR NA
## factor(Country)BRAZIL:factor(Reactor_Type)PWR NA
## factor(Country)CANADA:factor(Reactor_Type)PWR NA
## factor(Country)CHINA:factor(Reactor_Type)PWR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)PWR NA
## factor(Country)FRANCE:factor(Reactor_Type)PWR NA
## factor(Country)GERMANY:factor(Reactor_Type)PWR NA
## factor(Country)INDIA:factor(Reactor_Type)PWR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)PWR NA
## factor(Country)JAPAN:factor(Reactor_Type)PWR 3.8571881124
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)PWR NA
## factor(Country)MEXICO:factor(Reactor_Type)PWR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)PWR NA
## factor(Country)RUSSIA:factor(Reactor_Type)PWR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)PWR NA
## factor(Country)SWEDEN:factor(Reactor_Type)PWR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)PWR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)PWR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)PWR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)PWR NA
## factor(Country)BELARUS:Average_Concrete_Price NA
## factor(Country)BRAZIL:Average_Concrete_Price 0.0467263552
## factor(Country)CANADA:Average_Concrete_Price 0.0209787084
## factor(Country)CHINA:Average_Concrete_Price 0.0198440123
## factor(Country)CZECH REPUBLIC:Average_Concrete_Price 0.0460354646
## factor(Country)FRANCE:Average_Concrete_Price 0.1320337851
## factor(Country)GERMANY:Average_Concrete_Price 0.0522378090
## factor(Country)INDIA:Average_Concrete_Price 0.0217874957
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:Average_Concrete_Price NA
## factor(Country)JAPAN:Average_Concrete_Price 0.0721477748
## factor(Country)KOREA, REPUBLIC OF:Average_Concrete_Price 0.0426288648
## factor(Country)MEXICO:Average_Concrete_Price NA
## factor(Country)PAKISTAN:Average_Concrete_Price 0.0222860424
## factor(Country)RUSSIA:Average_Concrete_Price 0.0202834592
## factor(Country)SLOVAKIA:Average_Concrete_Price 1.1937925239
## factor(Country)SWEDEN:Average_Concrete_Price NA
## factor(Country)SWITZERLAND:Average_Concrete_Price NA
## factor(Country)UNITED ARAB EMIRATES:Average_Concrete_Price 0.1033098391
## factor(Country)UNITED KINGDOM:Average_Concrete_Price NA
## factor(Country)UNITED STATES OF AMERICA:Average_Concrete_Price 0.0182626022
## t value
## (Intercept) -0.508
## factor(Country)BELARUS 1.269
## factor(Country)BRAZIL 0.469
## factor(Country)CANADA 0.327
## factor(Country)CHINA 0.765
## factor(Country)CZECH REPUBLIC -0.275
## factor(Country)FRANCE 0.077
## factor(Country)GERMANY -0.238
## factor(Country)INDIA 0.891
## factor(Country)IRAN, ISLAMIC REPUBLIC OF 3.068
## factor(Country)JAPAN 0.428
## factor(Country)KOREA, REPUBLIC OF 0.355
## factor(Country)MEXICO -0.119
## factor(Country)PAKISTAN -0.075
## factor(Country)RUSSIA 0.969
## factor(Country)SLOVAKIA 0.029
## factor(Country)SWEDEN -0.402
## factor(Country)SWITZERLAND 0.601
## factor(Country)UNITED ARAB EMIRATES 0.215
## factor(Country)UNITED KINGDOM 0.256
## factor(Country)UNITED STATES OF AMERICA -0.050
## factor(Reactor_Type)FBR 0.551
## factor(Reactor_Type)GCR 0.447
## factor(Reactor_Type)HTGR 0.028
## factor(Reactor_Type)LWGR -1.122
## factor(Reactor_Type)PHWR 0.679
## factor(Reactor_Type)PWR -0.948
## Gross_Capacity_MWe -0.045
## I(Gross_Capacity_MWe^2) 1.369
## Duration -0.316
## Average_Concrete_Price 1.215
## factor(Country)BELARUS:factor(Reactor_Type)FBR NA
## factor(Country)BRAZIL:factor(Reactor_Type)FBR NA
## factor(Country)CANADA:factor(Reactor_Type)FBR NA
## factor(Country)CHINA:factor(Reactor_Type)FBR -0.857
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)FBR NA
## factor(Country)FRANCE:factor(Reactor_Type)FBR 1.793
## factor(Country)GERMANY:factor(Reactor_Type)FBR NA
## factor(Country)INDIA:factor(Reactor_Type)FBR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)FBR NA
## factor(Country)JAPAN:factor(Reactor_Type)FBR 1.881
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)FBR NA
## factor(Country)MEXICO:factor(Reactor_Type)FBR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)FBR NA
## factor(Country)RUSSIA:factor(Reactor_Type)FBR -0.468
## factor(Country)SLOVAKIA:factor(Reactor_Type)FBR NA
## factor(Country)SWEDEN:factor(Reactor_Type)FBR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)FBR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)FBR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)FBR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)FBR NA
## factor(Country)BELARUS:factor(Reactor_Type)GCR NA
## factor(Country)BRAZIL:factor(Reactor_Type)GCR NA
## factor(Country)CANADA:factor(Reactor_Type)GCR NA
## factor(Country)CHINA:factor(Reactor_Type)GCR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)GCR NA
## factor(Country)FRANCE:factor(Reactor_Type)GCR NA
## factor(Country)GERMANY:factor(Reactor_Type)GCR NA
## factor(Country)INDIA:factor(Reactor_Type)GCR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)GCR NA
## factor(Country)JAPAN:factor(Reactor_Type)GCR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)GCR NA
## factor(Country)MEXICO:factor(Reactor_Type)GCR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)GCR NA
## factor(Country)RUSSIA:factor(Reactor_Type)GCR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)GCR NA
## factor(Country)SWEDEN:factor(Reactor_Type)GCR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)GCR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)GCR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)GCR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)GCR NA
## factor(Country)BELARUS:factor(Reactor_Type)HTGR NA
## factor(Country)BRAZIL:factor(Reactor_Type)HTGR NA
## factor(Country)CANADA:factor(Reactor_Type)HTGR NA
## factor(Country)CHINA:factor(Reactor_Type)HTGR 8.786
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)HTGR NA
## factor(Country)FRANCE:factor(Reactor_Type)HTGR NA
## factor(Country)GERMANY:factor(Reactor_Type)HTGR 1.088
## factor(Country)INDIA:factor(Reactor_Type)HTGR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)HTGR NA
## factor(Country)JAPAN:factor(Reactor_Type)HTGR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)HTGR NA
## factor(Country)MEXICO:factor(Reactor_Type)HTGR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)HTGR NA
## factor(Country)RUSSIA:factor(Reactor_Type)HTGR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)HTGR NA
## factor(Country)SWEDEN:factor(Reactor_Type)HTGR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)HTGR NA
## factor(Country)BELARUS:factor(Reactor_Type)LWGR NA
## factor(Country)BRAZIL:factor(Reactor_Type)LWGR NA
## factor(Country)CANADA:factor(Reactor_Type)LWGR NA
## factor(Country)CHINA:factor(Reactor_Type)LWGR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)LWGR NA
## factor(Country)FRANCE:factor(Reactor_Type)LWGR NA
## factor(Country)GERMANY:factor(Reactor_Type)LWGR NA
## factor(Country)INDIA:factor(Reactor_Type)LWGR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)LWGR NA
## factor(Country)JAPAN:factor(Reactor_Type)LWGR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)LWGR NA
## factor(Country)MEXICO:factor(Reactor_Type)LWGR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)LWGR NA
## factor(Country)RUSSIA:factor(Reactor_Type)LWGR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)LWGR NA
## factor(Country)SWEDEN:factor(Reactor_Type)LWGR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)LWGR NA
## factor(Country)BELARUS:factor(Reactor_Type)PHWR NA
## factor(Country)BRAZIL:factor(Reactor_Type)PHWR NA
## factor(Country)CANADA:factor(Reactor_Type)PHWR -0.821
## factor(Country)CHINA:factor(Reactor_Type)PHWR -0.712
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)PHWR NA
## factor(Country)FRANCE:factor(Reactor_Type)PHWR NA
## factor(Country)GERMANY:factor(Reactor_Type)PHWR NA
## factor(Country)INDIA:factor(Reactor_Type)PHWR -1.272
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)PHWR NA
## factor(Country)JAPAN:factor(Reactor_Type)PHWR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)PHWR NA
## factor(Country)MEXICO:factor(Reactor_Type)PHWR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)PHWR NA
## factor(Country)RUSSIA:factor(Reactor_Type)PHWR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)PHWR NA
## factor(Country)SWEDEN:factor(Reactor_Type)PHWR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)PHWR NA
## factor(Country)BELARUS:factor(Reactor_Type)PWR NA
## factor(Country)BRAZIL:factor(Reactor_Type)PWR NA
## factor(Country)CANADA:factor(Reactor_Type)PWR NA
## factor(Country)CHINA:factor(Reactor_Type)PWR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)PWR NA
## factor(Country)FRANCE:factor(Reactor_Type)PWR NA
## factor(Country)GERMANY:factor(Reactor_Type)PWR NA
## factor(Country)INDIA:factor(Reactor_Type)PWR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)PWR NA
## factor(Country)JAPAN:factor(Reactor_Type)PWR 0.394
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)PWR NA
## factor(Country)MEXICO:factor(Reactor_Type)PWR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)PWR NA
## factor(Country)RUSSIA:factor(Reactor_Type)PWR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)PWR NA
## factor(Country)SWEDEN:factor(Reactor_Type)PWR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)PWR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)PWR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)PWR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)PWR NA
## factor(Country)BELARUS:Average_Concrete_Price NA
## factor(Country)BRAZIL:Average_Concrete_Price -0.212
## factor(Country)CANADA:Average_Concrete_Price -0.032
## factor(Country)CHINA:Average_Concrete_Price -1.073
## factor(Country)CZECH REPUBLIC:Average_Concrete_Price 0.302
## factor(Country)FRANCE:Average_Concrete_Price -0.142
## factor(Country)GERMANY:Average_Concrete_Price 0.290
## factor(Country)INDIA:Average_Concrete_Price -0.888
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:Average_Concrete_Price NA
## factor(Country)JAPAN:Average_Concrete_Price -0.375
## factor(Country)KOREA, REPUBLIC OF:Average_Concrete_Price -0.555
## factor(Country)MEXICO:Average_Concrete_Price NA
## factor(Country)PAKISTAN:Average_Concrete_Price -0.209
## factor(Country)RUSSIA:Average_Concrete_Price -1.209
## factor(Country)SLOVAKIA:Average_Concrete_Price -0.014
## factor(Country)SWEDEN:Average_Concrete_Price NA
## factor(Country)SWITZERLAND:Average_Concrete_Price NA
## factor(Country)UNITED ARAB EMIRATES:Average_Concrete_Price -0.201
## factor(Country)UNITED KINGDOM:Average_Concrete_Price NA
## factor(Country)UNITED STATES OF AMERICA:Average_Concrete_Price 2.207
## Pr(>|t|)
## (Intercept) 0.61219
## factor(Country)BELARUS 0.20586
## factor(Country)BRAZIL 0.63979
## factor(Country)CANADA 0.74386
## factor(Country)CHINA 0.44527
## factor(Country)CZECH REPUBLIC 0.78338
## factor(Country)FRANCE 0.93906
## factor(Country)GERMANY 0.81182
## factor(Country)INDIA 0.37405
## factor(Country)IRAN, ISLAMIC REPUBLIC OF 0.00245
## factor(Country)JAPAN 0.66928
## factor(Country)KOREA, REPUBLIC OF 0.72286
## factor(Country)MEXICO 0.90505
## factor(Country)PAKISTAN 0.94046
## factor(Country)RUSSIA 0.33351
## factor(Country)SLOVAKIA 0.97662
## factor(Country)SWEDEN 0.68809
## factor(Country)SWITZERLAND 0.54845
## factor(Country)UNITED ARAB EMIRATES 0.82983
## factor(Country)UNITED KINGDOM 0.79822
## factor(Country)UNITED STATES OF AMERICA 0.96042
## factor(Reactor_Type)FBR 0.58195
## factor(Reactor_Type)GCR 0.65535
## factor(Reactor_Type)HTGR 0.97744
## factor(Reactor_Type)LWGR 0.26334
## factor(Reactor_Type)PHWR 0.49795
## factor(Reactor_Type)PWR 0.34441
## Gross_Capacity_MWe 0.96404
## I(Gross_Capacity_MWe^2) 0.17259
## Duration 0.75253
## Average_Concrete_Price 0.22558
## factor(Country)BELARUS:factor(Reactor_Type)FBR NA
## factor(Country)BRAZIL:factor(Reactor_Type)FBR NA
## factor(Country)CANADA:factor(Reactor_Type)FBR NA
## factor(Country)CHINA:factor(Reactor_Type)FBR 0.39258
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)FBR NA
## factor(Country)FRANCE:factor(Reactor_Type)FBR 0.07443
## factor(Country)GERMANY:factor(Reactor_Type)FBR NA
## factor(Country)INDIA:factor(Reactor_Type)FBR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)FBR NA
## factor(Country)JAPAN:factor(Reactor_Type)FBR 0.06140
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)FBR NA
## factor(Country)MEXICO:factor(Reactor_Type)FBR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)FBR NA
## factor(Country)RUSSIA:factor(Reactor_Type)FBR 0.64000
## factor(Country)SLOVAKIA:factor(Reactor_Type)FBR NA
## factor(Country)SWEDEN:factor(Reactor_Type)FBR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)FBR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)FBR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)FBR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)FBR NA
## factor(Country)BELARUS:factor(Reactor_Type)GCR NA
## factor(Country)BRAZIL:factor(Reactor_Type)GCR NA
## factor(Country)CANADA:factor(Reactor_Type)GCR NA
## factor(Country)CHINA:factor(Reactor_Type)GCR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)GCR NA
## factor(Country)FRANCE:factor(Reactor_Type)GCR NA
## factor(Country)GERMANY:factor(Reactor_Type)GCR NA
## factor(Country)INDIA:factor(Reactor_Type)GCR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)GCR NA
## factor(Country)JAPAN:factor(Reactor_Type)GCR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)GCR NA
## factor(Country)MEXICO:factor(Reactor_Type)GCR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)GCR NA
## factor(Country)RUSSIA:factor(Reactor_Type)GCR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)GCR NA
## factor(Country)SWEDEN:factor(Reactor_Type)GCR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)GCR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)GCR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)GCR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)GCR NA
## factor(Country)BELARUS:factor(Reactor_Type)HTGR NA
## factor(Country)BRAZIL:factor(Reactor_Type)HTGR NA
## factor(Country)CANADA:factor(Reactor_Type)HTGR NA
## factor(Country)CHINA:factor(Reactor_Type)HTGR 0.00000000000000061
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)HTGR NA
## factor(Country)FRANCE:factor(Reactor_Type)HTGR NA
## factor(Country)GERMANY:factor(Reactor_Type)HTGR 0.27806
## factor(Country)INDIA:factor(Reactor_Type)HTGR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)HTGR NA
## factor(Country)JAPAN:factor(Reactor_Type)HTGR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)HTGR NA
## factor(Country)MEXICO:factor(Reactor_Type)HTGR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)HTGR NA
## factor(Country)RUSSIA:factor(Reactor_Type)HTGR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)HTGR NA
## factor(Country)SWEDEN:factor(Reactor_Type)HTGR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)HTGR NA
## factor(Country)BELARUS:factor(Reactor_Type)LWGR NA
## factor(Country)BRAZIL:factor(Reactor_Type)LWGR NA
## factor(Country)CANADA:factor(Reactor_Type)LWGR NA
## factor(Country)CHINA:factor(Reactor_Type)LWGR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)LWGR NA
## factor(Country)FRANCE:factor(Reactor_Type)LWGR NA
## factor(Country)GERMANY:factor(Reactor_Type)LWGR NA
## factor(Country)INDIA:factor(Reactor_Type)LWGR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)LWGR NA
## factor(Country)JAPAN:factor(Reactor_Type)LWGR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)LWGR NA
## factor(Country)MEXICO:factor(Reactor_Type)LWGR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)LWGR NA
## factor(Country)RUSSIA:factor(Reactor_Type)LWGR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)LWGR NA
## factor(Country)SWEDEN:factor(Reactor_Type)LWGR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)LWGR NA
## factor(Country)BELARUS:factor(Reactor_Type)PHWR NA
## factor(Country)BRAZIL:factor(Reactor_Type)PHWR NA
## factor(Country)CANADA:factor(Reactor_Type)PHWR 0.41254
## factor(Country)CHINA:factor(Reactor_Type)PHWR 0.47750
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)PHWR NA
## factor(Country)FRANCE:factor(Reactor_Type)PHWR NA
## factor(Country)GERMANY:factor(Reactor_Type)PHWR NA
## factor(Country)INDIA:factor(Reactor_Type)PHWR 0.20465
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)PHWR NA
## factor(Country)JAPAN:factor(Reactor_Type)PHWR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)PHWR NA
## factor(Country)MEXICO:factor(Reactor_Type)PHWR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)PHWR NA
## factor(Country)RUSSIA:factor(Reactor_Type)PHWR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)PHWR NA
## factor(Country)SWEDEN:factor(Reactor_Type)PHWR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)PHWR NA
## factor(Country)BELARUS:factor(Reactor_Type)PWR NA
## factor(Country)BRAZIL:factor(Reactor_Type)PWR NA
## factor(Country)CANADA:factor(Reactor_Type)PWR NA
## factor(Country)CHINA:factor(Reactor_Type)PWR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)PWR NA
## factor(Country)FRANCE:factor(Reactor_Type)PWR NA
## factor(Country)GERMANY:factor(Reactor_Type)PWR NA
## factor(Country)INDIA:factor(Reactor_Type)PWR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)PWR NA
## factor(Country)JAPAN:factor(Reactor_Type)PWR 0.69378
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)PWR NA
## factor(Country)MEXICO:factor(Reactor_Type)PWR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)PWR NA
## factor(Country)RUSSIA:factor(Reactor_Type)PWR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)PWR NA
## factor(Country)SWEDEN:factor(Reactor_Type)PWR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)PWR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)PWR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)PWR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)PWR NA
## factor(Country)BELARUS:Average_Concrete_Price NA
## factor(Country)BRAZIL:Average_Concrete_Price 0.83233
## factor(Country)CANADA:Average_Concrete_Price 0.97486
## factor(Country)CHINA:Average_Concrete_Price 0.28455
## factor(Country)CZECH REPUBLIC:Average_Concrete_Price 0.76323
## factor(Country)FRANCE:Average_Concrete_Price 0.88726
## factor(Country)GERMANY:Average_Concrete_Price 0.77203
## factor(Country)INDIA:Average_Concrete_Price 0.37562
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:Average_Concrete_Price NA
## factor(Country)JAPAN:Average_Concrete_Price 0.70780
## factor(Country)KOREA, REPUBLIC OF:Average_Concrete_Price 0.57965
## factor(Country)MEXICO:Average_Concrete_Price NA
## factor(Country)PAKISTAN:Average_Concrete_Price 0.83488
## factor(Country)RUSSIA:Average_Concrete_Price 0.22802
## factor(Country)SLOVAKIA:Average_Concrete_Price 0.98907
## factor(Country)SWEDEN:Average_Concrete_Price NA
## factor(Country)SWITZERLAND:Average_Concrete_Price NA
## factor(Country)UNITED ARAB EMIRATES:Average_Concrete_Price 0.84084
## factor(Country)UNITED KINGDOM:Average_Concrete_Price NA
## factor(Country)UNITED STATES OF AMERICA:Average_Concrete_Price 0.02843
##
## (Intercept)
## factor(Country)BELARUS
## factor(Country)BRAZIL
## factor(Country)CANADA
## factor(Country)CHINA
## factor(Country)CZECH REPUBLIC
## factor(Country)FRANCE
## factor(Country)GERMANY
## factor(Country)INDIA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF **
## factor(Country)JAPAN
## factor(Country)KOREA, REPUBLIC OF
## factor(Country)MEXICO
## factor(Country)PAKISTAN
## factor(Country)RUSSIA
## factor(Country)SLOVAKIA
## factor(Country)SWEDEN
## factor(Country)SWITZERLAND
## factor(Country)UNITED ARAB EMIRATES
## factor(Country)UNITED KINGDOM
## factor(Country)UNITED STATES OF AMERICA
## factor(Reactor_Type)FBR
## factor(Reactor_Type)GCR
## factor(Reactor_Type)HTGR
## factor(Reactor_Type)LWGR
## factor(Reactor_Type)PHWR
## factor(Reactor_Type)PWR
## Gross_Capacity_MWe
## I(Gross_Capacity_MWe^2)
## Duration
## Average_Concrete_Price
## factor(Country)BELARUS:factor(Reactor_Type)FBR
## factor(Country)BRAZIL:factor(Reactor_Type)FBR
## factor(Country)CANADA:factor(Reactor_Type)FBR
## factor(Country)CHINA:factor(Reactor_Type)FBR
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)FBR
## factor(Country)FRANCE:factor(Reactor_Type)FBR .
## factor(Country)GERMANY:factor(Reactor_Type)FBR
## factor(Country)INDIA:factor(Reactor_Type)FBR
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)FBR
## factor(Country)JAPAN:factor(Reactor_Type)FBR .
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)FBR
## factor(Country)MEXICO:factor(Reactor_Type)FBR
## factor(Country)PAKISTAN:factor(Reactor_Type)FBR
## factor(Country)RUSSIA:factor(Reactor_Type)FBR
## factor(Country)SLOVAKIA:factor(Reactor_Type)FBR
## factor(Country)SWEDEN:factor(Reactor_Type)FBR
## factor(Country)SWITZERLAND:factor(Reactor_Type)FBR
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)FBR
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)FBR
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)FBR
## factor(Country)BELARUS:factor(Reactor_Type)GCR
## factor(Country)BRAZIL:factor(Reactor_Type)GCR
## factor(Country)CANADA:factor(Reactor_Type)GCR
## factor(Country)CHINA:factor(Reactor_Type)GCR
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)GCR
## factor(Country)FRANCE:factor(Reactor_Type)GCR
## factor(Country)GERMANY:factor(Reactor_Type)GCR
## factor(Country)INDIA:factor(Reactor_Type)GCR
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)GCR
## factor(Country)JAPAN:factor(Reactor_Type)GCR
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)GCR
## factor(Country)MEXICO:factor(Reactor_Type)GCR
## factor(Country)PAKISTAN:factor(Reactor_Type)GCR
## factor(Country)RUSSIA:factor(Reactor_Type)GCR
## factor(Country)SLOVAKIA:factor(Reactor_Type)GCR
## factor(Country)SWEDEN:factor(Reactor_Type)GCR
## factor(Country)SWITZERLAND:factor(Reactor_Type)GCR
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)GCR
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)GCR
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)GCR
## factor(Country)BELARUS:factor(Reactor_Type)HTGR
## factor(Country)BRAZIL:factor(Reactor_Type)HTGR
## factor(Country)CANADA:factor(Reactor_Type)HTGR
## factor(Country)CHINA:factor(Reactor_Type)HTGR ***
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)HTGR
## factor(Country)FRANCE:factor(Reactor_Type)HTGR
## factor(Country)GERMANY:factor(Reactor_Type)HTGR
## factor(Country)INDIA:factor(Reactor_Type)HTGR
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)HTGR
## factor(Country)JAPAN:factor(Reactor_Type)HTGR
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)HTGR
## factor(Country)MEXICO:factor(Reactor_Type)HTGR
## factor(Country)PAKISTAN:factor(Reactor_Type)HTGR
## factor(Country)RUSSIA:factor(Reactor_Type)HTGR
## factor(Country)SLOVAKIA:factor(Reactor_Type)HTGR
## factor(Country)SWEDEN:factor(Reactor_Type)HTGR
## factor(Country)SWITZERLAND:factor(Reactor_Type)HTGR
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)HTGR
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)HTGR
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)HTGR
## factor(Country)BELARUS:factor(Reactor_Type)LWGR
## factor(Country)BRAZIL:factor(Reactor_Type)LWGR
## factor(Country)CANADA:factor(Reactor_Type)LWGR
## factor(Country)CHINA:factor(Reactor_Type)LWGR
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)LWGR
## factor(Country)FRANCE:factor(Reactor_Type)LWGR
## factor(Country)GERMANY:factor(Reactor_Type)LWGR
## factor(Country)INDIA:factor(Reactor_Type)LWGR
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)LWGR
## factor(Country)JAPAN:factor(Reactor_Type)LWGR
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)LWGR
## factor(Country)MEXICO:factor(Reactor_Type)LWGR
## factor(Country)PAKISTAN:factor(Reactor_Type)LWGR
## factor(Country)RUSSIA:factor(Reactor_Type)LWGR
## factor(Country)SLOVAKIA:factor(Reactor_Type)LWGR
## factor(Country)SWEDEN:factor(Reactor_Type)LWGR
## factor(Country)SWITZERLAND:factor(Reactor_Type)LWGR
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)LWGR
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)LWGR
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)LWGR
## factor(Country)BELARUS:factor(Reactor_Type)PHWR
## factor(Country)BRAZIL:factor(Reactor_Type)PHWR
## factor(Country)CANADA:factor(Reactor_Type)PHWR
## factor(Country)CHINA:factor(Reactor_Type)PHWR
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)PHWR
## factor(Country)FRANCE:factor(Reactor_Type)PHWR
## factor(Country)GERMANY:factor(Reactor_Type)PHWR
## factor(Country)INDIA:factor(Reactor_Type)PHWR
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)PHWR
## factor(Country)JAPAN:factor(Reactor_Type)PHWR
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)PHWR
## factor(Country)MEXICO:factor(Reactor_Type)PHWR
## factor(Country)PAKISTAN:factor(Reactor_Type)PHWR
## factor(Country)RUSSIA:factor(Reactor_Type)PHWR
## factor(Country)SLOVAKIA:factor(Reactor_Type)PHWR
## factor(Country)SWEDEN:factor(Reactor_Type)PHWR
## factor(Country)SWITZERLAND:factor(Reactor_Type)PHWR
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)PHWR
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)PHWR
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)PHWR
## factor(Country)BELARUS:factor(Reactor_Type)PWR
## factor(Country)BRAZIL:factor(Reactor_Type)PWR
## factor(Country)CANADA:factor(Reactor_Type)PWR
## factor(Country)CHINA:factor(Reactor_Type)PWR
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)PWR
## factor(Country)FRANCE:factor(Reactor_Type)PWR
## factor(Country)GERMANY:factor(Reactor_Type)PWR
## factor(Country)INDIA:factor(Reactor_Type)PWR
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)PWR
## factor(Country)JAPAN:factor(Reactor_Type)PWR
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)PWR
## factor(Country)MEXICO:factor(Reactor_Type)PWR
## factor(Country)PAKISTAN:factor(Reactor_Type)PWR
## factor(Country)RUSSIA:factor(Reactor_Type)PWR
## factor(Country)SLOVAKIA:factor(Reactor_Type)PWR
## factor(Country)SWEDEN:factor(Reactor_Type)PWR
## factor(Country)SWITZERLAND:factor(Reactor_Type)PWR
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)PWR
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)PWR
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)PWR
## factor(Country)BELARUS:Average_Concrete_Price
## factor(Country)BRAZIL:Average_Concrete_Price
## factor(Country)CANADA:Average_Concrete_Price
## factor(Country)CHINA:Average_Concrete_Price
## factor(Country)CZECH REPUBLIC:Average_Concrete_Price
## factor(Country)FRANCE:Average_Concrete_Price
## factor(Country)GERMANY:Average_Concrete_Price
## factor(Country)INDIA:Average_Concrete_Price
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:Average_Concrete_Price
## factor(Country)JAPAN:Average_Concrete_Price
## factor(Country)KOREA, REPUBLIC OF:Average_Concrete_Price
## factor(Country)MEXICO:Average_Concrete_Price
## factor(Country)PAKISTAN:Average_Concrete_Price
## factor(Country)RUSSIA:Average_Concrete_Price
## factor(Country)SLOVAKIA:Average_Concrete_Price
## factor(Country)SWEDEN:Average_Concrete_Price
## factor(Country)SWITZERLAND:Average_Concrete_Price
## factor(Country)UNITED ARAB EMIRATES:Average_Concrete_Price
## factor(Country)UNITED KINGDOM:Average_Concrete_Price
## factor(Country)UNITED STATES OF AMERICA:Average_Concrete_Price *
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Residual standard error: 1.284 on 206 degrees of freedom
## Multiple R-squared: 0.762, Adjusted R-squared: 0.6996
## F-statistic: 12.21 on 54 and 206 DF, p-value: < 0.00000000000000022
print("Gross_Capacity_MWe^2 variable is not significant. Let us try with Duration.")
## [1] "Gross_Capacity_MWe^2 variable is not significant. Let us try with Duration."
# Adding Duration square to model.
quad.higher.model<-lm(Cost_Billion_Dollars~factor(Country)+factor(Reactor_Type)+Gross_Capacity_MWe+I(Duration^2)+Duration+Average_Concrete_Price+factor(Country)*factor(Reactor_Type)+factor(Country)*Average_Concrete_Price, data = nuclear.df)
summary(quad.higher.model)
##
## Call:
## lm(formula = Cost_Billion_Dollars ~ factor(Country) + factor(Reactor_Type) +
## Gross_Capacity_MWe + I(Duration^2) + Duration + Average_Concrete_Price +
## factor(Country) * factor(Reactor_Type) + factor(Country) *
## Average_Concrete_Price, data = nuclear.df)
##
## Residuals:
## Min 1Q Median 3Q Max
## -4.3670 -0.3600 -0.0161 0.2689 11.7794
##
## Coefficients: (116 not defined because of singularities)
## Estimate
## (Intercept) -2.8113252
## factor(Country)BELARUS 6.4328501
## factor(Country)BRAZIL 2.0086751
## factor(Country)CANADA 1.7937788
## factor(Country)CHINA 2.9378667
## factor(Country)CZECH REPUBLIC -0.4236292
## factor(Country)FRANCE 0.2686950
## factor(Country)GERMANY 0.9331647
## factor(Country)INDIA 3.1685728
## factor(Country)IRAN, ISLAMIC REPUBLIC OF 10.1397591
## factor(Country)JAPAN 2.5019029
## factor(Country)KOREA, REPUBLIC OF 3.2966535
## factor(Country)MEXICO -0.2869795
## factor(Country)PAKISTAN 0.1681872
## factor(Country)RUSSIA 3.5380904
## factor(Country)SLOVAKIA 5.6346177
## factor(Country)SWEDEN -0.3427991
## factor(Country)SWITZERLAND 2.2922409
## factor(Country)UNITED ARAB EMIRATES 6.7586355
## factor(Country)UNITED KINGDOM 1.5631321
## factor(Country)UNITED STATES OF AMERICA 0.4202285
## factor(Reactor_Type)FBR 0.7201511
## factor(Reactor_Type)GCR 0.7925610
## factor(Reactor_Type)HTGR 0.1283638
## factor(Reactor_Type)LWGR -0.9406333
## factor(Reactor_Type)PHWR 2.0870753
## factor(Reactor_Type)PWR -0.3352964
## Gross_Capacity_MWe 0.0011764
## I(Duration^2) -0.0024794
## Duration 0.0871488
## Average_Concrete_Price 0.0227411
## factor(Country)BELARUS:factor(Reactor_Type)FBR NA
## factor(Country)BRAZIL:factor(Reactor_Type)FBR NA
## factor(Country)CANADA:factor(Reactor_Type)FBR NA
## factor(Country)CHINA:factor(Reactor_Type)FBR -1.6643303
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)FBR NA
## factor(Country)FRANCE:factor(Reactor_Type)FBR 8.0578518
## factor(Country)GERMANY:factor(Reactor_Type)FBR NA
## factor(Country)INDIA:factor(Reactor_Type)FBR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)FBR NA
## factor(Country)JAPAN:factor(Reactor_Type)FBR 9.3673198
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)FBR NA
## factor(Country)MEXICO:factor(Reactor_Type)FBR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)FBR NA
## factor(Country)RUSSIA:factor(Reactor_Type)FBR -1.0665371
## factor(Country)SLOVAKIA:factor(Reactor_Type)FBR NA
## factor(Country)SWEDEN:factor(Reactor_Type)FBR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)FBR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)FBR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)FBR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)FBR NA
## factor(Country)BELARUS:factor(Reactor_Type)GCR NA
## factor(Country)BRAZIL:factor(Reactor_Type)GCR NA
## factor(Country)CANADA:factor(Reactor_Type)GCR NA
## factor(Country)CHINA:factor(Reactor_Type)GCR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)GCR NA
## factor(Country)FRANCE:factor(Reactor_Type)GCR NA
## factor(Country)GERMANY:factor(Reactor_Type)GCR NA
## factor(Country)INDIA:factor(Reactor_Type)GCR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)GCR NA
## factor(Country)JAPAN:factor(Reactor_Type)GCR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)GCR NA
## factor(Country)MEXICO:factor(Reactor_Type)GCR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)GCR NA
## factor(Country)RUSSIA:factor(Reactor_Type)GCR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)GCR NA
## factor(Country)SWEDEN:factor(Reactor_Type)GCR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)GCR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)GCR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)GCR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)GCR NA
## factor(Country)BELARUS:factor(Reactor_Type)HTGR NA
## factor(Country)BRAZIL:factor(Reactor_Type)HTGR NA
## factor(Country)CANADA:factor(Reactor_Type)HTGR NA
## factor(Country)CHINA:factor(Reactor_Type)HTGR 13.8302043
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)HTGR NA
## factor(Country)FRANCE:factor(Reactor_Type)HTGR NA
## factor(Country)GERMANY:factor(Reactor_Type)HTGR 1.4884300
## factor(Country)INDIA:factor(Reactor_Type)HTGR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)HTGR NA
## factor(Country)JAPAN:factor(Reactor_Type)HTGR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)HTGR NA
## factor(Country)MEXICO:factor(Reactor_Type)HTGR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)HTGR NA
## factor(Country)RUSSIA:factor(Reactor_Type)HTGR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)HTGR NA
## factor(Country)SWEDEN:factor(Reactor_Type)HTGR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)HTGR NA
## factor(Country)BELARUS:factor(Reactor_Type)LWGR NA
## factor(Country)BRAZIL:factor(Reactor_Type)LWGR NA
## factor(Country)CANADA:factor(Reactor_Type)LWGR NA
## factor(Country)CHINA:factor(Reactor_Type)LWGR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)LWGR NA
## factor(Country)FRANCE:factor(Reactor_Type)LWGR NA
## factor(Country)GERMANY:factor(Reactor_Type)LWGR NA
## factor(Country)INDIA:factor(Reactor_Type)LWGR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)LWGR NA
## factor(Country)JAPAN:factor(Reactor_Type)LWGR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)LWGR NA
## factor(Country)MEXICO:factor(Reactor_Type)LWGR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)LWGR NA
## factor(Country)RUSSIA:factor(Reactor_Type)LWGR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)LWGR NA
## factor(Country)SWEDEN:factor(Reactor_Type)LWGR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)LWGR NA
## factor(Country)BELARUS:factor(Reactor_Type)PHWR NA
## factor(Country)BRAZIL:factor(Reactor_Type)PHWR NA
## factor(Country)CANADA:factor(Reactor_Type)PHWR -2.9437227
## factor(Country)CHINA:factor(Reactor_Type)PHWR -2.4195833
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)PHWR NA
## factor(Country)FRANCE:factor(Reactor_Type)PHWR NA
## factor(Country)GERMANY:factor(Reactor_Type)PHWR NA
## factor(Country)INDIA:factor(Reactor_Type)PHWR -3.7003879
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)PHWR NA
## factor(Country)JAPAN:factor(Reactor_Type)PHWR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)PHWR NA
## factor(Country)MEXICO:factor(Reactor_Type)PHWR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)PHWR NA
## factor(Country)RUSSIA:factor(Reactor_Type)PHWR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)PHWR NA
## factor(Country)SWEDEN:factor(Reactor_Type)PHWR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)PHWR NA
## factor(Country)BELARUS:factor(Reactor_Type)PWR NA
## factor(Country)BRAZIL:factor(Reactor_Type)PWR NA
## factor(Country)CANADA:factor(Reactor_Type)PWR NA
## factor(Country)CHINA:factor(Reactor_Type)PWR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)PWR NA
## factor(Country)FRANCE:factor(Reactor_Type)PWR NA
## factor(Country)GERMANY:factor(Reactor_Type)PWR NA
## factor(Country)INDIA:factor(Reactor_Type)PWR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)PWR NA
## factor(Country)JAPAN:factor(Reactor_Type)PWR 1.8751831
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)PWR NA
## factor(Country)MEXICO:factor(Reactor_Type)PWR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)PWR NA
## factor(Country)RUSSIA:factor(Reactor_Type)PWR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)PWR NA
## factor(Country)SWEDEN:factor(Reactor_Type)PWR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)PWR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)PWR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)PWR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)PWR NA
## factor(Country)BELARUS:Average_Concrete_Price NA
## factor(Country)BRAZIL:Average_Concrete_Price -0.0026808
## factor(Country)CANADA:Average_Concrete_Price -0.0024053
## factor(Country)CHINA:Average_Concrete_Price -0.0196816
## factor(Country)CZECH REPUBLIC:Average_Concrete_Price 0.0070513
## factor(Country)FRANCE:Average_Concrete_Price -0.0026370
## factor(Country)GERMANY:Average_Concrete_Price -0.0022085
## factor(Country)INDIA:Average_Concrete_Price -0.0162658
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:Average_Concrete_Price NA
## factor(Country)JAPAN:Average_Concrete_Price -0.0303623
## factor(Country)KOREA, REPUBLIC OF:Average_Concrete_Price -0.0205082
## factor(Country)MEXICO:Average_Concrete_Price NA
## factor(Country)PAKISTAN:Average_Concrete_Price -0.0032489
## factor(Country)RUSSIA:Average_Concrete_Price -0.0232451
## factor(Country)SLOVAKIA:Average_Concrete_Price -0.0295047
## factor(Country)SWEDEN:Average_Concrete_Price NA
## factor(Country)SWITZERLAND:Average_Concrete_Price NA
## factor(Country)UNITED ARAB EMIRATES:Average_Concrete_Price -0.0216097
## factor(Country)UNITED KINGDOM:Average_Concrete_Price NA
## factor(Country)UNITED STATES OF AMERICA:Average_Concrete_Price 0.0392032
## Std. Error
## (Intercept) 3.1286118
## factor(Country)BELARUS 4.4778836
## factor(Country)BRAZIL 4.9376499
## factor(Country)CANADA 3.3828590
## factor(Country)CHINA 3.3530675
## factor(Country)CZECH REPUBLIC 5.5339171
## factor(Country)FRANCE 15.6893049
## factor(Country)GERMANY 4.8749995
## factor(Country)INDIA 3.8536872
## factor(Country)IRAN, ISLAMIC REPUBLIC OF 3.0747302
## factor(Country)JAPAN 4.4369217
## factor(Country)KOREA, REPUBLIC OF 9.3150755
## factor(Country)MEXICO 2.9891263
## factor(Country)PAKISTAN 2.2022395
## factor(Country)RUSSIA 3.3844374
## factor(Country)SLOVAKIA 137.6936269
## factor(Country)SWEDEN 1.8329538
## factor(Country)SWITZERLAND 3.0254260
## factor(Country)UNITED ARAB EMIRATES 26.1326517
## factor(Country)UNITED KINGDOM 3.3328128
## factor(Country)UNITED STATES OF AMERICA 3.1298672
## factor(Reactor_Type)FBR 0.9880708
## factor(Reactor_Type)GCR 2.0579686
## factor(Reactor_Type)HTGR 0.9706925
## factor(Reactor_Type)LWGR 1.2676770
## factor(Reactor_Type)PHWR 2.5854082
## factor(Reactor_Type)PWR 0.2605117
## Gross_Capacity_MWe 0.0004212
## I(Duration^2) 0.0016435
## Duration 0.0714753
## Average_Concrete_Price 0.0190542
## factor(Country)BELARUS:factor(Reactor_Type)FBR NA
## factor(Country)BRAZIL:factor(Reactor_Type)FBR NA
## factor(Country)CANADA:factor(Reactor_Type)FBR NA
## factor(Country)CHINA:factor(Reactor_Type)FBR 1.6321816
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)FBR NA
## factor(Country)FRANCE:factor(Reactor_Type)FBR 4.5427374
## factor(Country)GERMANY:factor(Reactor_Type)FBR NA
## factor(Country)INDIA:factor(Reactor_Type)FBR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)FBR NA
## factor(Country)JAPAN:factor(Reactor_Type)FBR 4.9846375
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)FBR NA
## factor(Country)MEXICO:factor(Reactor_Type)FBR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)FBR NA
## factor(Country)RUSSIA:factor(Reactor_Type)FBR 1.4183184
## factor(Country)SLOVAKIA:factor(Reactor_Type)FBR NA
## factor(Country)SWEDEN:factor(Reactor_Type)FBR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)FBR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)FBR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)FBR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)FBR NA
## factor(Country)BELARUS:factor(Reactor_Type)GCR NA
## factor(Country)BRAZIL:factor(Reactor_Type)GCR NA
## factor(Country)CANADA:factor(Reactor_Type)GCR NA
## factor(Country)CHINA:factor(Reactor_Type)GCR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)GCR NA
## factor(Country)FRANCE:factor(Reactor_Type)GCR NA
## factor(Country)GERMANY:factor(Reactor_Type)GCR NA
## factor(Country)INDIA:factor(Reactor_Type)GCR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)GCR NA
## factor(Country)JAPAN:factor(Reactor_Type)GCR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)GCR NA
## factor(Country)MEXICO:factor(Reactor_Type)GCR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)GCR NA
## factor(Country)RUSSIA:factor(Reactor_Type)GCR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)GCR NA
## factor(Country)SWEDEN:factor(Reactor_Type)GCR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)GCR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)GCR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)GCR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)GCR NA
## factor(Country)BELARUS:factor(Reactor_Type)HTGR NA
## factor(Country)BRAZIL:factor(Reactor_Type)HTGR NA
## factor(Country)CANADA:factor(Reactor_Type)HTGR NA
## factor(Country)CHINA:factor(Reactor_Type)HTGR 1.6294235
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)HTGR NA
## factor(Country)FRANCE:factor(Reactor_Type)HTGR NA
## factor(Country)GERMANY:factor(Reactor_Type)HTGR 2.1783673
## factor(Country)INDIA:factor(Reactor_Type)HTGR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)HTGR NA
## factor(Country)JAPAN:factor(Reactor_Type)HTGR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)HTGR NA
## factor(Country)MEXICO:factor(Reactor_Type)HTGR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)HTGR NA
## factor(Country)RUSSIA:factor(Reactor_Type)HTGR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)HTGR NA
## factor(Country)SWEDEN:factor(Reactor_Type)HTGR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)HTGR NA
## factor(Country)BELARUS:factor(Reactor_Type)LWGR NA
## factor(Country)BRAZIL:factor(Reactor_Type)LWGR NA
## factor(Country)CANADA:factor(Reactor_Type)LWGR NA
## factor(Country)CHINA:factor(Reactor_Type)LWGR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)LWGR NA
## factor(Country)FRANCE:factor(Reactor_Type)LWGR NA
## factor(Country)GERMANY:factor(Reactor_Type)LWGR NA
## factor(Country)INDIA:factor(Reactor_Type)LWGR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)LWGR NA
## factor(Country)JAPAN:factor(Reactor_Type)LWGR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)LWGR NA
## factor(Country)MEXICO:factor(Reactor_Type)LWGR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)LWGR NA
## factor(Country)RUSSIA:factor(Reactor_Type)LWGR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)LWGR NA
## factor(Country)SWEDEN:factor(Reactor_Type)LWGR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)LWGR NA
## factor(Country)BELARUS:factor(Reactor_Type)PHWR NA
## factor(Country)BRAZIL:factor(Reactor_Type)PHWR NA
## factor(Country)CANADA:factor(Reactor_Type)PHWR 2.9240060
## factor(Country)CHINA:factor(Reactor_Type)PHWR 2.7733779
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)PHWR NA
## factor(Country)FRANCE:factor(Reactor_Type)PHWR NA
## factor(Country)GERMANY:factor(Reactor_Type)PHWR NA
## factor(Country)INDIA:factor(Reactor_Type)PHWR 2.8520655
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)PHWR NA
## factor(Country)JAPAN:factor(Reactor_Type)PHWR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)PHWR NA
## factor(Country)MEXICO:factor(Reactor_Type)PHWR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)PHWR NA
## factor(Country)RUSSIA:factor(Reactor_Type)PHWR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)PHWR NA
## factor(Country)SWEDEN:factor(Reactor_Type)PHWR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)PHWR NA
## factor(Country)BELARUS:factor(Reactor_Type)PWR NA
## factor(Country)BRAZIL:factor(Reactor_Type)PWR NA
## factor(Country)CANADA:factor(Reactor_Type)PWR NA
## factor(Country)CHINA:factor(Reactor_Type)PWR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)PWR NA
## factor(Country)FRANCE:factor(Reactor_Type)PWR NA
## factor(Country)GERMANY:factor(Reactor_Type)PWR NA
## factor(Country)INDIA:factor(Reactor_Type)PWR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)PWR NA
## factor(Country)JAPAN:factor(Reactor_Type)PWR 3.8575761
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)PWR NA
## factor(Country)MEXICO:factor(Reactor_Type)PWR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)PWR NA
## factor(Country)RUSSIA:factor(Reactor_Type)PWR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)PWR NA
## factor(Country)SWEDEN:factor(Reactor_Type)PWR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)PWR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)PWR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)PWR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)PWR NA
## factor(Country)BELARUS:Average_Concrete_Price NA
## factor(Country)BRAZIL:Average_Concrete_Price 0.0463253
## factor(Country)CANADA:Average_Concrete_Price 0.0210200
## factor(Country)CHINA:Average_Concrete_Price 0.0197326
## factor(Country)CZECH REPUBLIC:Average_Concrete_Price 0.0463283
## factor(Country)FRANCE:Average_Concrete_Price 0.1322028
## factor(Country)GERMANY:Average_Concrete_Price 0.0523063
## factor(Country)INDIA:Average_Concrete_Price 0.0217444
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:Average_Concrete_Price NA
## factor(Country)JAPAN:Average_Concrete_Price 0.0721427
## factor(Country)KOREA, REPUBLIC OF:Average_Concrete_Price 0.0422807
## factor(Country)MEXICO:Average_Concrete_Price NA
## factor(Country)PAKISTAN:Average_Concrete_Price 0.0222522
## factor(Country)RUSSIA:Average_Concrete_Price 0.0201748
## factor(Country)SLOVAKIA:Average_Concrete_Price 1.1926723
## factor(Country)SWEDEN:Average_Concrete_Price NA
## factor(Country)SWITZERLAND:Average_Concrete_Price NA
## factor(Country)UNITED ARAB EMIRATES:Average_Concrete_Price 0.1032135
## factor(Country)UNITED KINGDOM:Average_Concrete_Price NA
## factor(Country)UNITED STATES OF AMERICA:Average_Concrete_Price 0.0183193
## t value
## (Intercept) -0.899
## factor(Country)BELARUS 1.437
## factor(Country)BRAZIL 0.407
## factor(Country)CANADA 0.530
## factor(Country)CHINA 0.876
## factor(Country)CZECH REPUBLIC -0.077
## factor(Country)FRANCE 0.017
## factor(Country)GERMANY 0.191
## factor(Country)INDIA 0.822
## factor(Country)IRAN, ISLAMIC REPUBLIC OF 3.298
## factor(Country)JAPAN 0.564
## factor(Country)KOREA, REPUBLIC OF 0.354
## factor(Country)MEXICO -0.096
## factor(Country)PAKISTAN 0.076
## factor(Country)RUSSIA 1.045
## factor(Country)SLOVAKIA 0.041
## factor(Country)SWEDEN -0.187
## factor(Country)SWITZERLAND 0.758
## factor(Country)UNITED ARAB EMIRATES 0.259
## factor(Country)UNITED KINGDOM 0.469
## factor(Country)UNITED STATES OF AMERICA 0.134
## factor(Reactor_Type)FBR 0.729
## factor(Reactor_Type)GCR 0.385
## factor(Reactor_Type)HTGR 0.132
## factor(Reactor_Type)LWGR -0.742
## factor(Reactor_Type)PHWR 0.807
## factor(Reactor_Type)PWR -1.287
## Gross_Capacity_MWe 2.793
## I(Duration^2) -1.509
## Duration 1.219
## Average_Concrete_Price 1.193
## factor(Country)BELARUS:factor(Reactor_Type)FBR NA
## factor(Country)BRAZIL:factor(Reactor_Type)FBR NA
## factor(Country)CANADA:factor(Reactor_Type)FBR NA
## factor(Country)CHINA:factor(Reactor_Type)FBR -1.020
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)FBR NA
## factor(Country)FRANCE:factor(Reactor_Type)FBR 1.774
## factor(Country)GERMANY:factor(Reactor_Type)FBR NA
## factor(Country)INDIA:factor(Reactor_Type)FBR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)FBR NA
## factor(Country)JAPAN:factor(Reactor_Type)FBR 1.879
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)FBR NA
## factor(Country)MEXICO:factor(Reactor_Type)FBR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)FBR NA
## factor(Country)RUSSIA:factor(Reactor_Type)FBR -0.752
## factor(Country)SLOVAKIA:factor(Reactor_Type)FBR NA
## factor(Country)SWEDEN:factor(Reactor_Type)FBR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)FBR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)FBR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)FBR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)FBR NA
## factor(Country)BELARUS:factor(Reactor_Type)GCR NA
## factor(Country)BRAZIL:factor(Reactor_Type)GCR NA
## factor(Country)CANADA:factor(Reactor_Type)GCR NA
## factor(Country)CHINA:factor(Reactor_Type)GCR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)GCR NA
## factor(Country)FRANCE:factor(Reactor_Type)GCR NA
## factor(Country)GERMANY:factor(Reactor_Type)GCR NA
## factor(Country)INDIA:factor(Reactor_Type)GCR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)GCR NA
## factor(Country)JAPAN:factor(Reactor_Type)GCR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)GCR NA
## factor(Country)MEXICO:factor(Reactor_Type)GCR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)GCR NA
## factor(Country)RUSSIA:factor(Reactor_Type)GCR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)GCR NA
## factor(Country)SWEDEN:factor(Reactor_Type)GCR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)GCR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)GCR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)GCR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)GCR NA
## factor(Country)BELARUS:factor(Reactor_Type)HTGR NA
## factor(Country)BRAZIL:factor(Reactor_Type)HTGR NA
## factor(Country)CANADA:factor(Reactor_Type)HTGR NA
## factor(Country)CHINA:factor(Reactor_Type)HTGR 8.488
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)HTGR NA
## factor(Country)FRANCE:factor(Reactor_Type)HTGR NA
## factor(Country)GERMANY:factor(Reactor_Type)HTGR 0.683
## factor(Country)INDIA:factor(Reactor_Type)HTGR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)HTGR NA
## factor(Country)JAPAN:factor(Reactor_Type)HTGR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)HTGR NA
## factor(Country)MEXICO:factor(Reactor_Type)HTGR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)HTGR NA
## factor(Country)RUSSIA:factor(Reactor_Type)HTGR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)HTGR NA
## factor(Country)SWEDEN:factor(Reactor_Type)HTGR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)HTGR NA
## factor(Country)BELARUS:factor(Reactor_Type)LWGR NA
## factor(Country)BRAZIL:factor(Reactor_Type)LWGR NA
## factor(Country)CANADA:factor(Reactor_Type)LWGR NA
## factor(Country)CHINA:factor(Reactor_Type)LWGR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)LWGR NA
## factor(Country)FRANCE:factor(Reactor_Type)LWGR NA
## factor(Country)GERMANY:factor(Reactor_Type)LWGR NA
## factor(Country)INDIA:factor(Reactor_Type)LWGR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)LWGR NA
## factor(Country)JAPAN:factor(Reactor_Type)LWGR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)LWGR NA
## factor(Country)MEXICO:factor(Reactor_Type)LWGR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)LWGR NA
## factor(Country)RUSSIA:factor(Reactor_Type)LWGR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)LWGR NA
## factor(Country)SWEDEN:factor(Reactor_Type)LWGR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)LWGR NA
## factor(Country)BELARUS:factor(Reactor_Type)PHWR NA
## factor(Country)BRAZIL:factor(Reactor_Type)PHWR NA
## factor(Country)CANADA:factor(Reactor_Type)PHWR -1.007
## factor(Country)CHINA:factor(Reactor_Type)PHWR -0.872
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)PHWR NA
## factor(Country)FRANCE:factor(Reactor_Type)PHWR NA
## factor(Country)GERMANY:factor(Reactor_Type)PHWR NA
## factor(Country)INDIA:factor(Reactor_Type)PHWR -1.297
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)PHWR NA
## factor(Country)JAPAN:factor(Reactor_Type)PHWR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)PHWR NA
## factor(Country)MEXICO:factor(Reactor_Type)PHWR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)PHWR NA
## factor(Country)RUSSIA:factor(Reactor_Type)PHWR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)PHWR NA
## factor(Country)SWEDEN:factor(Reactor_Type)PHWR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)PHWR NA
## factor(Country)BELARUS:factor(Reactor_Type)PWR NA
## factor(Country)BRAZIL:factor(Reactor_Type)PWR NA
## factor(Country)CANADA:factor(Reactor_Type)PWR NA
## factor(Country)CHINA:factor(Reactor_Type)PWR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)PWR NA
## factor(Country)FRANCE:factor(Reactor_Type)PWR NA
## factor(Country)GERMANY:factor(Reactor_Type)PWR NA
## factor(Country)INDIA:factor(Reactor_Type)PWR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)PWR NA
## factor(Country)JAPAN:factor(Reactor_Type)PWR 0.486
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)PWR NA
## factor(Country)MEXICO:factor(Reactor_Type)PWR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)PWR NA
## factor(Country)RUSSIA:factor(Reactor_Type)PWR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)PWR NA
## factor(Country)SWEDEN:factor(Reactor_Type)PWR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)PWR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)PWR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)PWR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)PWR NA
## factor(Country)BELARUS:Average_Concrete_Price NA
## factor(Country)BRAZIL:Average_Concrete_Price -0.058
## factor(Country)CANADA:Average_Concrete_Price -0.114
## factor(Country)CHINA:Average_Concrete_Price -0.997
## factor(Country)CZECH REPUBLIC:Average_Concrete_Price 0.152
## factor(Country)FRANCE:Average_Concrete_Price -0.020
## factor(Country)GERMANY:Average_Concrete_Price -0.042
## factor(Country)INDIA:Average_Concrete_Price -0.748
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:Average_Concrete_Price NA
## factor(Country)JAPAN:Average_Concrete_Price -0.421
## factor(Country)KOREA, REPUBLIC OF:Average_Concrete_Price -0.485
## factor(Country)MEXICO:Average_Concrete_Price NA
## factor(Country)PAKISTAN:Average_Concrete_Price -0.146
## factor(Country)RUSSIA:Average_Concrete_Price -1.152
## factor(Country)SLOVAKIA:Average_Concrete_Price -0.025
## factor(Country)SWEDEN:Average_Concrete_Price NA
## factor(Country)SWITZERLAND:Average_Concrete_Price NA
## factor(Country)UNITED ARAB EMIRATES:Average_Concrete_Price -0.209
## factor(Country)UNITED KINGDOM:Average_Concrete_Price NA
## factor(Country)UNITED STATES OF AMERICA:Average_Concrete_Price 2.140
## Pr(>|t|)
## (Intercept) 0.36992
## factor(Country)BELARUS 0.15235
## factor(Country)BRAZIL 0.68457
## factor(Country)CANADA 0.59651
## factor(Country)CHINA 0.38196
## factor(Country)CZECH REPUBLIC 0.93905
## factor(Country)FRANCE 0.98635
## factor(Country)GERMANY 0.84839
## factor(Country)INDIA 0.41190
## factor(Country)IRAN, ISLAMIC REPUBLIC OF 0.00115
## factor(Country)JAPAN 0.57345
## factor(Country)KOREA, REPUBLIC OF 0.72377
## factor(Country)MEXICO 0.92361
## factor(Country)PAKISTAN 0.93920
## factor(Country)RUSSIA 0.29706
## factor(Country)SLOVAKIA 0.96740
## factor(Country)SWEDEN 0.85183
## factor(Country)SWITZERLAND 0.44952
## factor(Country)UNITED ARAB EMIRATES 0.79618
## factor(Country)UNITED KINGDOM 0.63956
## factor(Country)UNITED STATES OF AMERICA 0.89332
## factor(Reactor_Type)FBR 0.46692
## factor(Reactor_Type)GCR 0.70055
## factor(Reactor_Type)HTGR 0.89492
## factor(Reactor_Type)LWGR 0.45892
## factor(Reactor_Type)PHWR 0.42045
## factor(Reactor_Type)PWR 0.19951
## Gross_Capacity_MWe 0.00571
## I(Duration^2) 0.13292
## Duration 0.22413
## Average_Concrete_Price 0.23405
## factor(Country)BELARUS:factor(Reactor_Type)FBR NA
## factor(Country)BRAZIL:factor(Reactor_Type)FBR NA
## factor(Country)CANADA:factor(Reactor_Type)FBR NA
## factor(Country)CHINA:factor(Reactor_Type)FBR 0.30907
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)FBR NA
## factor(Country)FRANCE:factor(Reactor_Type)FBR 0.07758
## factor(Country)GERMANY:factor(Reactor_Type)FBR NA
## factor(Country)INDIA:factor(Reactor_Type)FBR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)FBR NA
## factor(Country)JAPAN:factor(Reactor_Type)FBR 0.06162
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)FBR NA
## factor(Country)MEXICO:factor(Reactor_Type)FBR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)FBR NA
## factor(Country)RUSSIA:factor(Reactor_Type)FBR 0.45293
## factor(Country)SLOVAKIA:factor(Reactor_Type)FBR NA
## factor(Country)SWEDEN:factor(Reactor_Type)FBR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)FBR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)FBR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)FBR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)FBR NA
## factor(Country)BELARUS:factor(Reactor_Type)GCR NA
## factor(Country)BRAZIL:factor(Reactor_Type)GCR NA
## factor(Country)CANADA:factor(Reactor_Type)GCR NA
## factor(Country)CHINA:factor(Reactor_Type)GCR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)GCR NA
## factor(Country)FRANCE:factor(Reactor_Type)GCR NA
## factor(Country)GERMANY:factor(Reactor_Type)GCR NA
## factor(Country)INDIA:factor(Reactor_Type)GCR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)GCR NA
## factor(Country)JAPAN:factor(Reactor_Type)GCR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)GCR NA
## factor(Country)MEXICO:factor(Reactor_Type)GCR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)GCR NA
## factor(Country)RUSSIA:factor(Reactor_Type)GCR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)GCR NA
## factor(Country)SWEDEN:factor(Reactor_Type)GCR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)GCR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)GCR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)GCR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)GCR NA
## factor(Country)BELARUS:factor(Reactor_Type)HTGR NA
## factor(Country)BRAZIL:factor(Reactor_Type)HTGR NA
## factor(Country)CANADA:factor(Reactor_Type)HTGR NA
## factor(Country)CHINA:factor(Reactor_Type)HTGR 0.00000000000000414
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)HTGR NA
## factor(Country)FRANCE:factor(Reactor_Type)HTGR NA
## factor(Country)GERMANY:factor(Reactor_Type)HTGR 0.49520
## factor(Country)INDIA:factor(Reactor_Type)HTGR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)HTGR NA
## factor(Country)JAPAN:factor(Reactor_Type)HTGR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)HTGR NA
## factor(Country)MEXICO:factor(Reactor_Type)HTGR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)HTGR NA
## factor(Country)RUSSIA:factor(Reactor_Type)HTGR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)HTGR NA
## factor(Country)SWEDEN:factor(Reactor_Type)HTGR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)HTGR NA
## factor(Country)BELARUS:factor(Reactor_Type)LWGR NA
## factor(Country)BRAZIL:factor(Reactor_Type)LWGR NA
## factor(Country)CANADA:factor(Reactor_Type)LWGR NA
## factor(Country)CHINA:factor(Reactor_Type)LWGR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)LWGR NA
## factor(Country)FRANCE:factor(Reactor_Type)LWGR NA
## factor(Country)GERMANY:factor(Reactor_Type)LWGR NA
## factor(Country)INDIA:factor(Reactor_Type)LWGR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)LWGR NA
## factor(Country)JAPAN:factor(Reactor_Type)LWGR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)LWGR NA
## factor(Country)MEXICO:factor(Reactor_Type)LWGR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)LWGR NA
## factor(Country)RUSSIA:factor(Reactor_Type)LWGR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)LWGR NA
## factor(Country)SWEDEN:factor(Reactor_Type)LWGR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)LWGR NA
## factor(Country)BELARUS:factor(Reactor_Type)PHWR NA
## factor(Country)BRAZIL:factor(Reactor_Type)PHWR NA
## factor(Country)CANADA:factor(Reactor_Type)PHWR 0.31524
## factor(Country)CHINA:factor(Reactor_Type)PHWR 0.38399
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)PHWR NA
## factor(Country)FRANCE:factor(Reactor_Type)PHWR NA
## factor(Country)GERMANY:factor(Reactor_Type)PHWR NA
## factor(Country)INDIA:factor(Reactor_Type)PHWR 0.19593
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)PHWR NA
## factor(Country)JAPAN:factor(Reactor_Type)PHWR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)PHWR NA
## factor(Country)MEXICO:factor(Reactor_Type)PHWR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)PHWR NA
## factor(Country)RUSSIA:factor(Reactor_Type)PHWR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)PHWR NA
## factor(Country)SWEDEN:factor(Reactor_Type)PHWR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)PHWR NA
## factor(Country)BELARUS:factor(Reactor_Type)PWR NA
## factor(Country)BRAZIL:factor(Reactor_Type)PWR NA
## factor(Country)CANADA:factor(Reactor_Type)PWR NA
## factor(Country)CHINA:factor(Reactor_Type)PWR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)PWR NA
## factor(Country)FRANCE:factor(Reactor_Type)PWR NA
## factor(Country)GERMANY:factor(Reactor_Type)PWR NA
## factor(Country)INDIA:factor(Reactor_Type)PWR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)PWR NA
## factor(Country)JAPAN:factor(Reactor_Type)PWR 0.62741
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)PWR NA
## factor(Country)MEXICO:factor(Reactor_Type)PWR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)PWR NA
## factor(Country)RUSSIA:factor(Reactor_Type)PWR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)PWR NA
## factor(Country)SWEDEN:factor(Reactor_Type)PWR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)PWR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)PWR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)PWR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)PWR NA
## factor(Country)BELARUS:Average_Concrete_Price NA
## factor(Country)BRAZIL:Average_Concrete_Price 0.95391
## factor(Country)CANADA:Average_Concrete_Price 0.90901
## factor(Country)CHINA:Average_Concrete_Price 0.31973
## factor(Country)CZECH REPUBLIC:Average_Concrete_Price 0.87918
## factor(Country)FRANCE:Average_Concrete_Price 0.98411
## factor(Country)GERMANY:Average_Concrete_Price 0.96636
## factor(Country)INDIA:Average_Concrete_Price 0.45529
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:Average_Concrete_Price NA
## factor(Country)JAPAN:Average_Concrete_Price 0.67429
## factor(Country)KOREA, REPUBLIC OF:Average_Concrete_Price 0.62816
## factor(Country)MEXICO:Average_Concrete_Price NA
## factor(Country)PAKISTAN:Average_Concrete_Price 0.88406
## factor(Country)RUSSIA:Average_Concrete_Price 0.25058
## factor(Country)SLOVAKIA:Average_Concrete_Price 0.98029
## factor(Country)SWEDEN:Average_Concrete_Price NA
## factor(Country)SWITZERLAND:Average_Concrete_Price NA
## factor(Country)UNITED ARAB EMIRATES:Average_Concrete_Price 0.83437
## factor(Country)UNITED KINGDOM:Average_Concrete_Price NA
## factor(Country)UNITED STATES OF AMERICA:Average_Concrete_Price 0.03353
##
## (Intercept)
## factor(Country)BELARUS
## factor(Country)BRAZIL
## factor(Country)CANADA
## factor(Country)CHINA
## factor(Country)CZECH REPUBLIC
## factor(Country)FRANCE
## factor(Country)GERMANY
## factor(Country)INDIA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF **
## factor(Country)JAPAN
## factor(Country)KOREA, REPUBLIC OF
## factor(Country)MEXICO
## factor(Country)PAKISTAN
## factor(Country)RUSSIA
## factor(Country)SLOVAKIA
## factor(Country)SWEDEN
## factor(Country)SWITZERLAND
## factor(Country)UNITED ARAB EMIRATES
## factor(Country)UNITED KINGDOM
## factor(Country)UNITED STATES OF AMERICA
## factor(Reactor_Type)FBR
## factor(Reactor_Type)GCR
## factor(Reactor_Type)HTGR
## factor(Reactor_Type)LWGR
## factor(Reactor_Type)PHWR
## factor(Reactor_Type)PWR
## Gross_Capacity_MWe **
## I(Duration^2)
## Duration
## Average_Concrete_Price
## factor(Country)BELARUS:factor(Reactor_Type)FBR
## factor(Country)BRAZIL:factor(Reactor_Type)FBR
## factor(Country)CANADA:factor(Reactor_Type)FBR
## factor(Country)CHINA:factor(Reactor_Type)FBR
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)FBR
## factor(Country)FRANCE:factor(Reactor_Type)FBR .
## factor(Country)GERMANY:factor(Reactor_Type)FBR
## factor(Country)INDIA:factor(Reactor_Type)FBR
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)FBR
## factor(Country)JAPAN:factor(Reactor_Type)FBR .
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)FBR
## factor(Country)MEXICO:factor(Reactor_Type)FBR
## factor(Country)PAKISTAN:factor(Reactor_Type)FBR
## factor(Country)RUSSIA:factor(Reactor_Type)FBR
## factor(Country)SLOVAKIA:factor(Reactor_Type)FBR
## factor(Country)SWEDEN:factor(Reactor_Type)FBR
## factor(Country)SWITZERLAND:factor(Reactor_Type)FBR
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)FBR
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)FBR
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)FBR
## factor(Country)BELARUS:factor(Reactor_Type)GCR
## factor(Country)BRAZIL:factor(Reactor_Type)GCR
## factor(Country)CANADA:factor(Reactor_Type)GCR
## factor(Country)CHINA:factor(Reactor_Type)GCR
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)GCR
## factor(Country)FRANCE:factor(Reactor_Type)GCR
## factor(Country)GERMANY:factor(Reactor_Type)GCR
## factor(Country)INDIA:factor(Reactor_Type)GCR
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)GCR
## factor(Country)JAPAN:factor(Reactor_Type)GCR
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)GCR
## factor(Country)MEXICO:factor(Reactor_Type)GCR
## factor(Country)PAKISTAN:factor(Reactor_Type)GCR
## factor(Country)RUSSIA:factor(Reactor_Type)GCR
## factor(Country)SLOVAKIA:factor(Reactor_Type)GCR
## factor(Country)SWEDEN:factor(Reactor_Type)GCR
## factor(Country)SWITZERLAND:factor(Reactor_Type)GCR
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)GCR
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)GCR
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)GCR
## factor(Country)BELARUS:factor(Reactor_Type)HTGR
## factor(Country)BRAZIL:factor(Reactor_Type)HTGR
## factor(Country)CANADA:factor(Reactor_Type)HTGR
## factor(Country)CHINA:factor(Reactor_Type)HTGR ***
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)HTGR
## factor(Country)FRANCE:factor(Reactor_Type)HTGR
## factor(Country)GERMANY:factor(Reactor_Type)HTGR
## factor(Country)INDIA:factor(Reactor_Type)HTGR
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)HTGR
## factor(Country)JAPAN:factor(Reactor_Type)HTGR
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)HTGR
## factor(Country)MEXICO:factor(Reactor_Type)HTGR
## factor(Country)PAKISTAN:factor(Reactor_Type)HTGR
## factor(Country)RUSSIA:factor(Reactor_Type)HTGR
## factor(Country)SLOVAKIA:factor(Reactor_Type)HTGR
## factor(Country)SWEDEN:factor(Reactor_Type)HTGR
## factor(Country)SWITZERLAND:factor(Reactor_Type)HTGR
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)HTGR
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)HTGR
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)HTGR
## factor(Country)BELARUS:factor(Reactor_Type)LWGR
## factor(Country)BRAZIL:factor(Reactor_Type)LWGR
## factor(Country)CANADA:factor(Reactor_Type)LWGR
## factor(Country)CHINA:factor(Reactor_Type)LWGR
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)LWGR
## factor(Country)FRANCE:factor(Reactor_Type)LWGR
## factor(Country)GERMANY:factor(Reactor_Type)LWGR
## factor(Country)INDIA:factor(Reactor_Type)LWGR
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)LWGR
## factor(Country)JAPAN:factor(Reactor_Type)LWGR
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)LWGR
## factor(Country)MEXICO:factor(Reactor_Type)LWGR
## factor(Country)PAKISTAN:factor(Reactor_Type)LWGR
## factor(Country)RUSSIA:factor(Reactor_Type)LWGR
## factor(Country)SLOVAKIA:factor(Reactor_Type)LWGR
## factor(Country)SWEDEN:factor(Reactor_Type)LWGR
## factor(Country)SWITZERLAND:factor(Reactor_Type)LWGR
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)LWGR
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)LWGR
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)LWGR
## factor(Country)BELARUS:factor(Reactor_Type)PHWR
## factor(Country)BRAZIL:factor(Reactor_Type)PHWR
## factor(Country)CANADA:factor(Reactor_Type)PHWR
## factor(Country)CHINA:factor(Reactor_Type)PHWR
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)PHWR
## factor(Country)FRANCE:factor(Reactor_Type)PHWR
## factor(Country)GERMANY:factor(Reactor_Type)PHWR
## factor(Country)INDIA:factor(Reactor_Type)PHWR
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)PHWR
## factor(Country)JAPAN:factor(Reactor_Type)PHWR
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)PHWR
## factor(Country)MEXICO:factor(Reactor_Type)PHWR
## factor(Country)PAKISTAN:factor(Reactor_Type)PHWR
## factor(Country)RUSSIA:factor(Reactor_Type)PHWR
## factor(Country)SLOVAKIA:factor(Reactor_Type)PHWR
## factor(Country)SWEDEN:factor(Reactor_Type)PHWR
## factor(Country)SWITZERLAND:factor(Reactor_Type)PHWR
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)PHWR
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)PHWR
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)PHWR
## factor(Country)BELARUS:factor(Reactor_Type)PWR
## factor(Country)BRAZIL:factor(Reactor_Type)PWR
## factor(Country)CANADA:factor(Reactor_Type)PWR
## factor(Country)CHINA:factor(Reactor_Type)PWR
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)PWR
## factor(Country)FRANCE:factor(Reactor_Type)PWR
## factor(Country)GERMANY:factor(Reactor_Type)PWR
## factor(Country)INDIA:factor(Reactor_Type)PWR
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)PWR
## factor(Country)JAPAN:factor(Reactor_Type)PWR
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)PWR
## factor(Country)MEXICO:factor(Reactor_Type)PWR
## factor(Country)PAKISTAN:factor(Reactor_Type)PWR
## factor(Country)RUSSIA:factor(Reactor_Type)PWR
## factor(Country)SLOVAKIA:factor(Reactor_Type)PWR
## factor(Country)SWEDEN:factor(Reactor_Type)PWR
## factor(Country)SWITZERLAND:factor(Reactor_Type)PWR
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)PWR
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)PWR
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)PWR
## factor(Country)BELARUS:Average_Concrete_Price
## factor(Country)BRAZIL:Average_Concrete_Price
## factor(Country)CANADA:Average_Concrete_Price
## factor(Country)CHINA:Average_Concrete_Price
## factor(Country)CZECH REPUBLIC:Average_Concrete_Price
## factor(Country)FRANCE:Average_Concrete_Price
## factor(Country)GERMANY:Average_Concrete_Price
## factor(Country)INDIA:Average_Concrete_Price
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:Average_Concrete_Price
## factor(Country)JAPAN:Average_Concrete_Price
## factor(Country)KOREA, REPUBLIC OF:Average_Concrete_Price
## factor(Country)MEXICO:Average_Concrete_Price
## factor(Country)PAKISTAN:Average_Concrete_Price
## factor(Country)RUSSIA:Average_Concrete_Price
## factor(Country)SLOVAKIA:Average_Concrete_Price
## factor(Country)SWEDEN:Average_Concrete_Price
## factor(Country)SWITZERLAND:Average_Concrete_Price
## factor(Country)UNITED ARAB EMIRATES:Average_Concrete_Price
## factor(Country)UNITED KINGDOM:Average_Concrete_Price
## factor(Country)UNITED STATES OF AMERICA:Average_Concrete_Price *
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Residual standard error: 1.282 on 206 degrees of freedom
## Multiple R-squared: 0.7624, Adjusted R-squared: 0.7002
## F-statistic: 12.24 on 54 and 206 DF, p-value: < 0.00000000000000022
print("Duration^2 variable is not significant. Let us try with Average_Concrete_Price.")
## [1] "Duration^2 variable is not significant. Let us try with Average_Concrete_Price."
# Adding Average_Concrete_Price square to model.
quad.higher.model<-lm(Cost_Billion_Dollars~factor(Country)+factor(Reactor_Type)+Gross_Capacity_MWe+I(Average_Concrete_Price^2)+Duration+Average_Concrete_Price+factor(Country)*factor(Reactor_Type)+factor(Country)*Average_Concrete_Price, data = nuclear.df)
summary(quad.higher.model)
##
## Call:
## lm(formula = Cost_Billion_Dollars ~ factor(Country) + factor(Reactor_Type) +
## Gross_Capacity_MWe + I(Average_Concrete_Price^2) + Duration +
## Average_Concrete_Price + factor(Country) * factor(Reactor_Type) +
## factor(Country) * Average_Concrete_Price, data = nuclear.df)
##
## Residuals:
## Min 1Q Median 3Q Max
## -4.2874 -0.3262 -0.0067 0.2107 11.8438
##
## Coefficients: (116 not defined because of singularities)
## Estimate
## (Intercept) -0.83674030
## factor(Country)BELARUS 4.55497388
## factor(Country)BRAZIL 0.93371200
## factor(Country)CANADA 0.18701148
## factor(Country)CHINA 2.42156870
## factor(Country)CZECH REPUBLIC -2.24665509
## factor(Country)FRANCE 0.88967515
## factor(Country)GERMANY -1.41034128
## factor(Country)INDIA 2.77830504
## factor(Country)IRAN, ISLAMIC REPUBLIC OF 8.63886048
## factor(Country)JAPAN 0.65444285
## factor(Country)KOREA, REPUBLIC OF 2.59744853
## factor(Country)MEXICO -1.18315997
## factor(Country)PAKISTAN 0.20978916
## factor(Country)RUSSIA 2.67315576
## factor(Country)SLOVAKIA 3.44013193
## factor(Country)SWEDEN -0.45606798
## factor(Country)SWITZERLAND 1.17688959
## factor(Country)UNITED ARAB EMIRATES 7.26875298
## factor(Country)UNITED KINGDOM -0.05437708
## factor(Country)UNITED STATES OF AMERICA -1.27781777
## factor(Reactor_Type)FBR 0.88297315
## factor(Reactor_Type)GCR 1.00686284
## factor(Reactor_Type)HTGR 0.23198186
## factor(Reactor_Type)LWGR -1.32746485
## factor(Reactor_Type)PHWR 0.91364217
## factor(Reactor_Type)PWR -0.30768250
## Gross_Capacity_MWe 0.00139679
## I(Average_Concrete_Price^2) 0.00003474
## Duration -0.00858885
## Average_Concrete_Price 0.01447910
## factor(Country)BELARUS:factor(Reactor_Type)FBR NA
## factor(Country)BRAZIL:factor(Reactor_Type)FBR NA
## factor(Country)CANADA:factor(Reactor_Type)FBR NA
## factor(Country)CHINA:factor(Reactor_Type)FBR -1.26871999
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)FBR NA
## factor(Country)FRANCE:factor(Reactor_Type)FBR 7.42071783
## factor(Country)GERMANY:factor(Reactor_Type)FBR NA
## factor(Country)INDIA:factor(Reactor_Type)FBR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)FBR NA
## factor(Country)JAPAN:factor(Reactor_Type)FBR 9.16793224
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)FBR NA
## factor(Country)MEXICO:factor(Reactor_Type)FBR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)FBR NA
## factor(Country)RUSSIA:factor(Reactor_Type)FBR -1.25168342
## factor(Country)SLOVAKIA:factor(Reactor_Type)FBR NA
## factor(Country)SWEDEN:factor(Reactor_Type)FBR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)FBR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)FBR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)FBR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)FBR NA
## factor(Country)BELARUS:factor(Reactor_Type)GCR NA
## factor(Country)BRAZIL:factor(Reactor_Type)GCR NA
## factor(Country)CANADA:factor(Reactor_Type)GCR NA
## factor(Country)CHINA:factor(Reactor_Type)GCR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)GCR NA
## factor(Country)FRANCE:factor(Reactor_Type)GCR NA
## factor(Country)GERMANY:factor(Reactor_Type)GCR NA
## factor(Country)INDIA:factor(Reactor_Type)GCR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)GCR NA
## factor(Country)JAPAN:factor(Reactor_Type)GCR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)GCR NA
## factor(Country)MEXICO:factor(Reactor_Type)GCR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)GCR NA
## factor(Country)RUSSIA:factor(Reactor_Type)GCR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)GCR NA
## factor(Country)SWEDEN:factor(Reactor_Type)GCR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)GCR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)GCR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)GCR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)GCR NA
## factor(Country)BELARUS:factor(Reactor_Type)HTGR NA
## factor(Country)BRAZIL:factor(Reactor_Type)HTGR NA
## factor(Country)CANADA:factor(Reactor_Type)HTGR NA
## factor(Country)CHINA:factor(Reactor_Type)HTGR 14.07339314
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)HTGR NA
## factor(Country)FRANCE:factor(Reactor_Type)HTGR NA
## factor(Country)GERMANY:factor(Reactor_Type)HTGR 1.98933676
## factor(Country)INDIA:factor(Reactor_Type)HTGR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)HTGR NA
## factor(Country)JAPAN:factor(Reactor_Type)HTGR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)HTGR NA
## factor(Country)MEXICO:factor(Reactor_Type)HTGR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)HTGR NA
## factor(Country)RUSSIA:factor(Reactor_Type)HTGR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)HTGR NA
## factor(Country)SWEDEN:factor(Reactor_Type)HTGR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)HTGR NA
## factor(Country)BELARUS:factor(Reactor_Type)LWGR NA
## factor(Country)BRAZIL:factor(Reactor_Type)LWGR NA
## factor(Country)CANADA:factor(Reactor_Type)LWGR NA
## factor(Country)CHINA:factor(Reactor_Type)LWGR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)LWGR NA
## factor(Country)FRANCE:factor(Reactor_Type)LWGR NA
## factor(Country)GERMANY:factor(Reactor_Type)LWGR NA
## factor(Country)INDIA:factor(Reactor_Type)LWGR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)LWGR NA
## factor(Country)JAPAN:factor(Reactor_Type)LWGR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)LWGR NA
## factor(Country)MEXICO:factor(Reactor_Type)LWGR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)LWGR NA
## factor(Country)RUSSIA:factor(Reactor_Type)LWGR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)LWGR NA
## factor(Country)SWEDEN:factor(Reactor_Type)LWGR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)LWGR NA
## factor(Country)BELARUS:factor(Reactor_Type)PHWR NA
## factor(Country)BRAZIL:factor(Reactor_Type)PHWR NA
## factor(Country)CANADA:factor(Reactor_Type)PHWR -1.70738558
## factor(Country)CHINA:factor(Reactor_Type)PHWR -1.24619881
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)PHWR NA
## factor(Country)FRANCE:factor(Reactor_Type)PHWR NA
## factor(Country)GERMANY:factor(Reactor_Type)PHWR NA
## factor(Country)INDIA:factor(Reactor_Type)PHWR -2.42248594
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)PHWR NA
## factor(Country)JAPAN:factor(Reactor_Type)PHWR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)PHWR NA
## factor(Country)MEXICO:factor(Reactor_Type)PHWR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)PHWR NA
## factor(Country)RUSSIA:factor(Reactor_Type)PHWR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)PHWR NA
## factor(Country)SWEDEN:factor(Reactor_Type)PHWR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)PHWR NA
## factor(Country)BELARUS:factor(Reactor_Type)PWR NA
## factor(Country)BRAZIL:factor(Reactor_Type)PWR NA
## factor(Country)CANADA:factor(Reactor_Type)PWR NA
## factor(Country)CHINA:factor(Reactor_Type)PWR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)PWR NA
## factor(Country)FRANCE:factor(Reactor_Type)PWR NA
## factor(Country)GERMANY:factor(Reactor_Type)PWR NA
## factor(Country)INDIA:factor(Reactor_Type)PWR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)PWR NA
## factor(Country)JAPAN:factor(Reactor_Type)PWR 1.51921971
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)PWR NA
## factor(Country)MEXICO:factor(Reactor_Type)PWR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)PWR NA
## factor(Country)RUSSIA:factor(Reactor_Type)PWR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)PWR NA
## factor(Country)SWEDEN:factor(Reactor_Type)PWR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)PWR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)PWR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)PWR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)PWR NA
## factor(Country)BELARUS:Average_Concrete_Price NA
## factor(Country)BRAZIL:Average_Concrete_Price -0.00146413
## factor(Country)CANADA:Average_Concrete_Price 0.00211049
## factor(Country)CHINA:Average_Concrete_Price -0.02496445
## factor(Country)CZECH REPUBLIC:Average_Concrete_Price 0.01456447
## factor(Country)FRANCE:Average_Concrete_Price -0.01761659
## factor(Country)GERMANY:Average_Concrete_Price 0.01112301
## factor(Country)INDIA:Average_Concrete_Price -0.02118018
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:Average_Concrete_Price NA
## factor(Country)JAPAN:Average_Concrete_Price -0.02185782
## factor(Country)KOREA, REPUBLIC OF:Average_Concrete_Price -0.02462150
## factor(Country)MEXICO:Average_Concrete_Price NA
## factor(Country)PAKISTAN:Average_Concrete_Price -0.01087348
## factor(Country)RUSSIA:Average_Concrete_Price -0.02547995
## factor(Country)SLOVAKIA:Average_Concrete_Price -0.01685169
## factor(Country)SWEDEN:Average_Concrete_Price NA
## factor(Country)SWITZERLAND:Average_Concrete_Price NA
## factor(Country)UNITED ARAB EMIRATES:Average_Concrete_Price -0.03090493
## factor(Country)UNITED KINGDOM:Average_Concrete_Price NA
## factor(Country)UNITED STATES OF AMERICA:Average_Concrete_Price 0.04612461
## Std. Error
## (Intercept) 3.71083844
## factor(Country)BELARUS 5.36056620
## factor(Country)BRAZIL 5.20880143
## factor(Country)CANADA 3.84741331
## factor(Country)CHINA 3.34992220
## factor(Country)CZECH REPUBLIC 5.65797577
## factor(Country)FRANCE 15.78586663
## factor(Country)GERMANY 5.21425753
## factor(Country)INDIA 4.01798023
## factor(Country)IRAN, ISLAMIC REPUBLIC OF 3.41959141
## factor(Country)JAPAN 4.83317156
## factor(Country)KOREA, REPUBLIC OF 9.39042767
## factor(Country)MEXICO 3.34689794
## factor(Country)PAKISTAN 2.22274179
## factor(Country)RUSSIA 3.48937258
## factor(Country)SLOVAKIA 138.33865283
## factor(Country)SWEDEN 1.84905281
## factor(Country)SWITZERLAND 3.39477409
## factor(Country)UNITED ARAB EMIRATES 26.31197959
## factor(Country)UNITED KINGDOM 3.77236281
## factor(Country)UNITED STATES OF AMERICA 3.63228206
## factor(Reactor_Type)FBR 0.98641060
## factor(Reactor_Type)GCR 2.06323315
## factor(Reactor_Type)HTGR 0.97249188
## factor(Reactor_Type)LWGR 1.40456919
## factor(Reactor_Type)PHWR 3.03888259
## factor(Reactor_Type)PWR 0.26101021
## Gross_Capacity_MWe 0.00040270
## I(Average_Concrete_Price^2) 0.00005910
## Duration 0.03303782
## Average_Concrete_Price 0.02249033
## factor(Country)BELARUS:factor(Reactor_Type)FBR NA
## factor(Country)BRAZIL:factor(Reactor_Type)FBR NA
## factor(Country)CANADA:factor(Reactor_Type)FBR NA
## factor(Country)CHINA:factor(Reactor_Type)FBR 1.63361125
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)FBR NA
## factor(Country)FRANCE:factor(Reactor_Type)FBR 4.54627817
## factor(Country)GERMANY:factor(Reactor_Type)FBR NA
## factor(Country)INDIA:factor(Reactor_Type)FBR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)FBR NA
## factor(Country)JAPAN:factor(Reactor_Type)FBR 5.01135348
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)FBR NA
## factor(Country)MEXICO:factor(Reactor_Type)FBR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)FBR NA
## factor(Country)RUSSIA:factor(Reactor_Type)FBR 1.43143847
## factor(Country)SLOVAKIA:factor(Reactor_Type)FBR NA
## factor(Country)SWEDEN:factor(Reactor_Type)FBR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)FBR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)FBR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)FBR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)FBR NA
## factor(Country)BELARUS:factor(Reactor_Type)GCR NA
## factor(Country)BRAZIL:factor(Reactor_Type)GCR NA
## factor(Country)CANADA:factor(Reactor_Type)GCR NA
## factor(Country)CHINA:factor(Reactor_Type)GCR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)GCR NA
## factor(Country)FRANCE:factor(Reactor_Type)GCR NA
## factor(Country)GERMANY:factor(Reactor_Type)GCR NA
## factor(Country)INDIA:factor(Reactor_Type)GCR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)GCR NA
## factor(Country)JAPAN:factor(Reactor_Type)GCR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)GCR NA
## factor(Country)MEXICO:factor(Reactor_Type)GCR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)GCR NA
## factor(Country)RUSSIA:factor(Reactor_Type)GCR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)GCR NA
## factor(Country)SWEDEN:factor(Reactor_Type)GCR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)GCR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)GCR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)GCR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)GCR NA
## factor(Country)BELARUS:factor(Reactor_Type)HTGR NA
## factor(Country)BRAZIL:factor(Reactor_Type)HTGR NA
## factor(Country)CANADA:factor(Reactor_Type)HTGR NA
## factor(Country)CHINA:factor(Reactor_Type)HTGR 1.62754842
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)HTGR NA
## factor(Country)FRANCE:factor(Reactor_Type)HTGR NA
## factor(Country)GERMANY:factor(Reactor_Type)HTGR 2.16669651
## factor(Country)INDIA:factor(Reactor_Type)HTGR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)HTGR NA
## factor(Country)JAPAN:factor(Reactor_Type)HTGR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)HTGR NA
## factor(Country)MEXICO:factor(Reactor_Type)HTGR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)HTGR NA
## factor(Country)RUSSIA:factor(Reactor_Type)HTGR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)HTGR NA
## factor(Country)SWEDEN:factor(Reactor_Type)HTGR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)HTGR NA
## factor(Country)BELARUS:factor(Reactor_Type)LWGR NA
## factor(Country)BRAZIL:factor(Reactor_Type)LWGR NA
## factor(Country)CANADA:factor(Reactor_Type)LWGR NA
## factor(Country)CHINA:factor(Reactor_Type)LWGR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)LWGR NA
## factor(Country)FRANCE:factor(Reactor_Type)LWGR NA
## factor(Country)GERMANY:factor(Reactor_Type)LWGR NA
## factor(Country)INDIA:factor(Reactor_Type)LWGR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)LWGR NA
## factor(Country)JAPAN:factor(Reactor_Type)LWGR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)LWGR NA
## factor(Country)MEXICO:factor(Reactor_Type)LWGR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)LWGR NA
## factor(Country)RUSSIA:factor(Reactor_Type)LWGR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)LWGR NA
## factor(Country)SWEDEN:factor(Reactor_Type)LWGR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)LWGR NA
## factor(Country)BELARUS:factor(Reactor_Type)PHWR NA
## factor(Country)BRAZIL:factor(Reactor_Type)PHWR NA
## factor(Country)CANADA:factor(Reactor_Type)PHWR 3.35301543
## factor(Country)CHINA:factor(Reactor_Type)PHWR 3.19901033
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)PHWR NA
## factor(Country)FRANCE:factor(Reactor_Type)PHWR NA
## factor(Country)GERMANY:factor(Reactor_Type)PHWR NA
## factor(Country)INDIA:factor(Reactor_Type)PHWR 3.43098425
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)PHWR NA
## factor(Country)JAPAN:factor(Reactor_Type)PHWR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)PHWR NA
## factor(Country)MEXICO:factor(Reactor_Type)PHWR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)PHWR NA
## factor(Country)RUSSIA:factor(Reactor_Type)PHWR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)PHWR NA
## factor(Country)SWEDEN:factor(Reactor_Type)PHWR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)PHWR NA
## factor(Country)BELARUS:factor(Reactor_Type)PWR NA
## factor(Country)BRAZIL:factor(Reactor_Type)PWR NA
## factor(Country)CANADA:factor(Reactor_Type)PWR NA
## factor(Country)CHINA:factor(Reactor_Type)PWR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)PWR NA
## factor(Country)FRANCE:factor(Reactor_Type)PWR NA
## factor(Country)GERMANY:factor(Reactor_Type)PWR NA
## factor(Country)INDIA:factor(Reactor_Type)PWR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)PWR NA
## factor(Country)JAPAN:factor(Reactor_Type)PWR 3.87317568
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)PWR NA
## factor(Country)MEXICO:factor(Reactor_Type)PWR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)PWR NA
## factor(Country)RUSSIA:factor(Reactor_Type)PWR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)PWR NA
## factor(Country)SWEDEN:factor(Reactor_Type)PWR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)PWR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)PWR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)PWR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)PWR NA
## factor(Country)BELARUS:Average_Concrete_Price NA
## factor(Country)BRAZIL:Average_Concrete_Price 0.04654813
## factor(Country)CANADA:Average_Concrete_Price 0.02129643
## factor(Country)CHINA:Average_Concrete_Price 0.02270252
## factor(Country)CZECH REPUBLIC:Average_Concrete_Price 0.04622715
## factor(Country)FRANCE:Average_Concrete_Price 0.13252911
## factor(Country)GERMANY:Average_Concrete_Price 0.05247672
## factor(Country)INDIA:Average_Concrete_Price 0.02268018
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:Average_Concrete_Price NA
## factor(Country)JAPAN:Average_Concrete_Price 0.07265343
## factor(Country)KOREA, REPUBLIC OF:Average_Concrete_Price 0.04531254
## factor(Country)MEXICO:Average_Concrete_Price NA
## factor(Country)PAKISTAN:Average_Concrete_Price 0.02555855
## factor(Country)RUSSIA:Average_Concrete_Price 0.02135844
## factor(Country)SLOVAKIA:Average_Concrete_Price 1.19820510
## factor(Country)SWEDEN:Average_Concrete_Price NA
## factor(Country)SWITZERLAND:Average_Concrete_Price NA
## factor(Country)UNITED ARAB EMIRATES:Average_Concrete_Price 0.10530348
## factor(Country)UNITED KINGDOM:Average_Concrete_Price NA
## factor(Country)UNITED STATES OF AMERICA:Average_Concrete_Price 0.01864221
## t value
## (Intercept) -0.225
## factor(Country)BELARUS 0.850
## factor(Country)BRAZIL 0.179
## factor(Country)CANADA 0.049
## factor(Country)CHINA 0.723
## factor(Country)CZECH REPUBLIC -0.397
## factor(Country)FRANCE 0.056
## factor(Country)GERMANY -0.270
## factor(Country)INDIA 0.691
## factor(Country)IRAN, ISLAMIC REPUBLIC OF 2.526
## factor(Country)JAPAN 0.135
## factor(Country)KOREA, REPUBLIC OF 0.277
## factor(Country)MEXICO -0.354
## factor(Country)PAKISTAN 0.094
## factor(Country)RUSSIA 0.766
## factor(Country)SLOVAKIA 0.025
## factor(Country)SWEDEN -0.247
## factor(Country)SWITZERLAND 0.347
## factor(Country)UNITED ARAB EMIRATES 0.276
## factor(Country)UNITED KINGDOM -0.014
## factor(Country)UNITED STATES OF AMERICA -0.352
## factor(Reactor_Type)FBR 0.895
## factor(Reactor_Type)GCR 0.488
## factor(Reactor_Type)HTGR 0.239
## factor(Reactor_Type)LWGR -0.945
## factor(Reactor_Type)PHWR 0.301
## factor(Reactor_Type)PWR -1.179
## Gross_Capacity_MWe 3.469
## I(Average_Concrete_Price^2) 0.588
## Duration -0.260
## Average_Concrete_Price 0.644
## factor(Country)BELARUS:factor(Reactor_Type)FBR NA
## factor(Country)BRAZIL:factor(Reactor_Type)FBR NA
## factor(Country)CANADA:factor(Reactor_Type)FBR NA
## factor(Country)CHINA:factor(Reactor_Type)FBR -0.777
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)FBR NA
## factor(Country)FRANCE:factor(Reactor_Type)FBR 1.632
## factor(Country)GERMANY:factor(Reactor_Type)FBR NA
## factor(Country)INDIA:factor(Reactor_Type)FBR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)FBR NA
## factor(Country)JAPAN:factor(Reactor_Type)FBR 1.829
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)FBR NA
## factor(Country)MEXICO:factor(Reactor_Type)FBR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)FBR NA
## factor(Country)RUSSIA:factor(Reactor_Type)FBR -0.874
## factor(Country)SLOVAKIA:factor(Reactor_Type)FBR NA
## factor(Country)SWEDEN:factor(Reactor_Type)FBR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)FBR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)FBR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)FBR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)FBR NA
## factor(Country)BELARUS:factor(Reactor_Type)GCR NA
## factor(Country)BRAZIL:factor(Reactor_Type)GCR NA
## factor(Country)CANADA:factor(Reactor_Type)GCR NA
## factor(Country)CHINA:factor(Reactor_Type)GCR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)GCR NA
## factor(Country)FRANCE:factor(Reactor_Type)GCR NA
## factor(Country)GERMANY:factor(Reactor_Type)GCR NA
## factor(Country)INDIA:factor(Reactor_Type)GCR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)GCR NA
## factor(Country)JAPAN:factor(Reactor_Type)GCR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)GCR NA
## factor(Country)MEXICO:factor(Reactor_Type)GCR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)GCR NA
## factor(Country)RUSSIA:factor(Reactor_Type)GCR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)GCR NA
## factor(Country)SWEDEN:factor(Reactor_Type)GCR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)GCR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)GCR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)GCR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)GCR NA
## factor(Country)BELARUS:factor(Reactor_Type)HTGR NA
## factor(Country)BRAZIL:factor(Reactor_Type)HTGR NA
## factor(Country)CANADA:factor(Reactor_Type)HTGR NA
## factor(Country)CHINA:factor(Reactor_Type)HTGR 8.647
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)HTGR NA
## factor(Country)FRANCE:factor(Reactor_Type)HTGR NA
## factor(Country)GERMANY:factor(Reactor_Type)HTGR 0.918
## factor(Country)INDIA:factor(Reactor_Type)HTGR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)HTGR NA
## factor(Country)JAPAN:factor(Reactor_Type)HTGR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)HTGR NA
## factor(Country)MEXICO:factor(Reactor_Type)HTGR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)HTGR NA
## factor(Country)RUSSIA:factor(Reactor_Type)HTGR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)HTGR NA
## factor(Country)SWEDEN:factor(Reactor_Type)HTGR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)HTGR NA
## factor(Country)BELARUS:factor(Reactor_Type)LWGR NA
## factor(Country)BRAZIL:factor(Reactor_Type)LWGR NA
## factor(Country)CANADA:factor(Reactor_Type)LWGR NA
## factor(Country)CHINA:factor(Reactor_Type)LWGR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)LWGR NA
## factor(Country)FRANCE:factor(Reactor_Type)LWGR NA
## factor(Country)GERMANY:factor(Reactor_Type)LWGR NA
## factor(Country)INDIA:factor(Reactor_Type)LWGR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)LWGR NA
## factor(Country)JAPAN:factor(Reactor_Type)LWGR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)LWGR NA
## factor(Country)MEXICO:factor(Reactor_Type)LWGR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)LWGR NA
## factor(Country)RUSSIA:factor(Reactor_Type)LWGR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)LWGR NA
## factor(Country)SWEDEN:factor(Reactor_Type)LWGR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)LWGR NA
## factor(Country)BELARUS:factor(Reactor_Type)PHWR NA
## factor(Country)BRAZIL:factor(Reactor_Type)PHWR NA
## factor(Country)CANADA:factor(Reactor_Type)PHWR -0.509
## factor(Country)CHINA:factor(Reactor_Type)PHWR -0.390
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)PHWR NA
## factor(Country)FRANCE:factor(Reactor_Type)PHWR NA
## factor(Country)GERMANY:factor(Reactor_Type)PHWR NA
## factor(Country)INDIA:factor(Reactor_Type)PHWR -0.706
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)PHWR NA
## factor(Country)JAPAN:factor(Reactor_Type)PHWR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)PHWR NA
## factor(Country)MEXICO:factor(Reactor_Type)PHWR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)PHWR NA
## factor(Country)RUSSIA:factor(Reactor_Type)PHWR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)PHWR NA
## factor(Country)SWEDEN:factor(Reactor_Type)PHWR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)PHWR NA
## factor(Country)BELARUS:factor(Reactor_Type)PWR NA
## factor(Country)BRAZIL:factor(Reactor_Type)PWR NA
## factor(Country)CANADA:factor(Reactor_Type)PWR NA
## factor(Country)CHINA:factor(Reactor_Type)PWR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)PWR NA
## factor(Country)FRANCE:factor(Reactor_Type)PWR NA
## factor(Country)GERMANY:factor(Reactor_Type)PWR NA
## factor(Country)INDIA:factor(Reactor_Type)PWR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)PWR NA
## factor(Country)JAPAN:factor(Reactor_Type)PWR 0.392
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)PWR NA
## factor(Country)MEXICO:factor(Reactor_Type)PWR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)PWR NA
## factor(Country)RUSSIA:factor(Reactor_Type)PWR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)PWR NA
## factor(Country)SWEDEN:factor(Reactor_Type)PWR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)PWR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)PWR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)PWR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)PWR NA
## factor(Country)BELARUS:Average_Concrete_Price NA
## factor(Country)BRAZIL:Average_Concrete_Price -0.031
## factor(Country)CANADA:Average_Concrete_Price 0.099
## factor(Country)CHINA:Average_Concrete_Price -1.100
## factor(Country)CZECH REPUBLIC:Average_Concrete_Price 0.315
## factor(Country)FRANCE:Average_Concrete_Price -0.133
## factor(Country)GERMANY:Average_Concrete_Price 0.212
## factor(Country)INDIA:Average_Concrete_Price -0.934
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:Average_Concrete_Price NA
## factor(Country)JAPAN:Average_Concrete_Price -0.301
## factor(Country)KOREA, REPUBLIC OF:Average_Concrete_Price -0.543
## factor(Country)MEXICO:Average_Concrete_Price NA
## factor(Country)PAKISTAN:Average_Concrete_Price -0.425
## factor(Country)RUSSIA:Average_Concrete_Price -1.193
## factor(Country)SLOVAKIA:Average_Concrete_Price -0.014
## factor(Country)SWEDEN:Average_Concrete_Price NA
## factor(Country)SWITZERLAND:Average_Concrete_Price NA
## factor(Country)UNITED ARAB EMIRATES:Average_Concrete_Price -0.293
## factor(Country)UNITED KINGDOM:Average_Concrete_Price NA
## factor(Country)UNITED STATES OF AMERICA:Average_Concrete_Price 2.474
## Pr(>|t|)
## (Intercept) 0.821825
## factor(Country)BELARUS 0.396468
## factor(Country)BRAZIL 0.857912
## factor(Country)CANADA 0.961280
## factor(Country)CHINA 0.470578
## factor(Country)CZECH REPUBLIC 0.691721
## factor(Country)FRANCE 0.955110
## factor(Country)GERMANY 0.787063
## factor(Country)INDIA 0.490050
## factor(Country)IRAN, ISLAMIC REPUBLIC OF 0.012280
## factor(Country)JAPAN 0.892423
## factor(Country)KOREA, REPUBLIC OF 0.782360
## factor(Country)MEXICO 0.724068
## factor(Country)PAKISTAN 0.924897
## factor(Country)RUSSIA 0.444503
## factor(Country)SLOVAKIA 0.980185
## factor(Country)SWEDEN 0.805425
## factor(Country)SWITZERLAND 0.729188
## factor(Country)UNITED ARAB EMIRATES 0.782631
## factor(Country)UNITED KINGDOM 0.988513
## factor(Country)UNITED STATES OF AMERICA 0.725352
## factor(Reactor_Type)FBR 0.371758
## factor(Reactor_Type)GCR 0.626067
## factor(Reactor_Type)HTGR 0.811697
## factor(Reactor_Type)LWGR 0.345713
## factor(Reactor_Type)PHWR 0.763984
## factor(Reactor_Type)PWR 0.239832
## Gross_Capacity_MWe 0.000637
## I(Average_Concrete_Price^2) 0.557294
## Duration 0.795146
## Average_Concrete_Price 0.520426
## factor(Country)BELARUS:factor(Reactor_Type)FBR NA
## factor(Country)BRAZIL:factor(Reactor_Type)FBR NA
## factor(Country)CANADA:factor(Reactor_Type)FBR NA
## factor(Country)CHINA:factor(Reactor_Type)FBR 0.438265
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)FBR NA
## factor(Country)FRANCE:factor(Reactor_Type)FBR 0.104152
## factor(Country)GERMANY:factor(Reactor_Type)FBR NA
## factor(Country)INDIA:factor(Reactor_Type)FBR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)FBR NA
## factor(Country)JAPAN:factor(Reactor_Type)FBR 0.068780
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)FBR NA
## factor(Country)MEXICO:factor(Reactor_Type)FBR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)FBR NA
## factor(Country)RUSSIA:factor(Reactor_Type)FBR 0.382906
## factor(Country)SLOVAKIA:factor(Reactor_Type)FBR NA
## factor(Country)SWEDEN:factor(Reactor_Type)FBR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)FBR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)FBR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)FBR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)FBR NA
## factor(Country)BELARUS:factor(Reactor_Type)GCR NA
## factor(Country)BRAZIL:factor(Reactor_Type)GCR NA
## factor(Country)CANADA:factor(Reactor_Type)GCR NA
## factor(Country)CHINA:factor(Reactor_Type)GCR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)GCR NA
## factor(Country)FRANCE:factor(Reactor_Type)GCR NA
## factor(Country)GERMANY:factor(Reactor_Type)GCR NA
## factor(Country)INDIA:factor(Reactor_Type)GCR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)GCR NA
## factor(Country)JAPAN:factor(Reactor_Type)GCR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)GCR NA
## factor(Country)MEXICO:factor(Reactor_Type)GCR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)GCR NA
## factor(Country)RUSSIA:factor(Reactor_Type)GCR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)GCR NA
## factor(Country)SWEDEN:factor(Reactor_Type)GCR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)GCR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)GCR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)GCR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)GCR NA
## factor(Country)BELARUS:factor(Reactor_Type)HTGR NA
## factor(Country)BRAZIL:factor(Reactor_Type)HTGR NA
## factor(Country)CANADA:factor(Reactor_Type)HTGR NA
## factor(Country)CHINA:factor(Reactor_Type)HTGR 0.00000000000000149
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)HTGR NA
## factor(Country)FRANCE:factor(Reactor_Type)HTGR NA
## factor(Country)GERMANY:factor(Reactor_Type)HTGR 0.359618
## factor(Country)INDIA:factor(Reactor_Type)HTGR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)HTGR NA
## factor(Country)JAPAN:factor(Reactor_Type)HTGR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)HTGR NA
## factor(Country)MEXICO:factor(Reactor_Type)HTGR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)HTGR NA
## factor(Country)RUSSIA:factor(Reactor_Type)HTGR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)HTGR NA
## factor(Country)SWEDEN:factor(Reactor_Type)HTGR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)HTGR NA
## factor(Country)BELARUS:factor(Reactor_Type)LWGR NA
## factor(Country)BRAZIL:factor(Reactor_Type)LWGR NA
## factor(Country)CANADA:factor(Reactor_Type)LWGR NA
## factor(Country)CHINA:factor(Reactor_Type)LWGR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)LWGR NA
## factor(Country)FRANCE:factor(Reactor_Type)LWGR NA
## factor(Country)GERMANY:factor(Reactor_Type)LWGR NA
## factor(Country)INDIA:factor(Reactor_Type)LWGR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)LWGR NA
## factor(Country)JAPAN:factor(Reactor_Type)LWGR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)LWGR NA
## factor(Country)MEXICO:factor(Reactor_Type)LWGR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)LWGR NA
## factor(Country)RUSSIA:factor(Reactor_Type)LWGR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)LWGR NA
## factor(Country)SWEDEN:factor(Reactor_Type)LWGR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)LWGR NA
## factor(Country)BELARUS:factor(Reactor_Type)PHWR NA
## factor(Country)BRAZIL:factor(Reactor_Type)PHWR NA
## factor(Country)CANADA:factor(Reactor_Type)PHWR 0.611151
## factor(Country)CHINA:factor(Reactor_Type)PHWR 0.697266
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)PHWR NA
## factor(Country)FRANCE:factor(Reactor_Type)PHWR NA
## factor(Country)GERMANY:factor(Reactor_Type)PHWR NA
## factor(Country)INDIA:factor(Reactor_Type)PHWR 0.480948
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)PHWR NA
## factor(Country)JAPAN:factor(Reactor_Type)PHWR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)PHWR NA
## factor(Country)MEXICO:factor(Reactor_Type)PHWR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)PHWR NA
## factor(Country)RUSSIA:factor(Reactor_Type)PHWR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)PHWR NA
## factor(Country)SWEDEN:factor(Reactor_Type)PHWR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)PHWR NA
## factor(Country)BELARUS:factor(Reactor_Type)PWR NA
## factor(Country)BRAZIL:factor(Reactor_Type)PWR NA
## factor(Country)CANADA:factor(Reactor_Type)PWR NA
## factor(Country)CHINA:factor(Reactor_Type)PWR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)PWR NA
## factor(Country)FRANCE:factor(Reactor_Type)PWR NA
## factor(Country)GERMANY:factor(Reactor_Type)PWR NA
## factor(Country)INDIA:factor(Reactor_Type)PWR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)PWR NA
## factor(Country)JAPAN:factor(Reactor_Type)PWR 0.695285
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)PWR NA
## factor(Country)MEXICO:factor(Reactor_Type)PWR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)PWR NA
## factor(Country)RUSSIA:factor(Reactor_Type)PWR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)PWR NA
## factor(Country)SWEDEN:factor(Reactor_Type)PWR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)PWR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)PWR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)PWR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)PWR NA
## factor(Country)BELARUS:Average_Concrete_Price NA
## factor(Country)BRAZIL:Average_Concrete_Price 0.974938
## factor(Country)CANADA:Average_Concrete_Price 0.921155
## factor(Country)CHINA:Average_Concrete_Price 0.272775
## factor(Country)CZECH REPUBLIC:Average_Concrete_Price 0.753033
## factor(Country)FRANCE:Average_Concrete_Price 0.894382
## factor(Country)GERMANY:Average_Concrete_Price 0.832347
## factor(Country)INDIA:Average_Concrete_Price 0.351468
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:Average_Concrete_Price NA
## factor(Country)JAPAN:Average_Concrete_Price 0.763832
## factor(Country)KOREA, REPUBLIC OF:Average_Concrete_Price 0.587462
## factor(Country)MEXICO:Average_Concrete_Price NA
## factor(Country)PAKISTAN:Average_Concrete_Price 0.670964
## factor(Country)RUSSIA:Average_Concrete_Price 0.234254
## factor(Country)SLOVAKIA:Average_Concrete_Price 0.988792
## factor(Country)SWEDEN:Average_Concrete_Price NA
## factor(Country)SWITZERLAND:Average_Concrete_Price NA
## factor(Country)UNITED ARAB EMIRATES:Average_Concrete_Price 0.769447
## factor(Country)UNITED KINGDOM:Average_Concrete_Price NA
## factor(Country)UNITED STATES OF AMERICA:Average_Concrete_Price 0.014162
##
## (Intercept)
## factor(Country)BELARUS
## factor(Country)BRAZIL
## factor(Country)CANADA
## factor(Country)CHINA
## factor(Country)CZECH REPUBLIC
## factor(Country)FRANCE
## factor(Country)GERMANY
## factor(Country)INDIA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF *
## factor(Country)JAPAN
## factor(Country)KOREA, REPUBLIC OF
## factor(Country)MEXICO
## factor(Country)PAKISTAN
## factor(Country)RUSSIA
## factor(Country)SLOVAKIA
## factor(Country)SWEDEN
## factor(Country)SWITZERLAND
## factor(Country)UNITED ARAB EMIRATES
## factor(Country)UNITED KINGDOM
## factor(Country)UNITED STATES OF AMERICA
## factor(Reactor_Type)FBR
## factor(Reactor_Type)GCR
## factor(Reactor_Type)HTGR
## factor(Reactor_Type)LWGR
## factor(Reactor_Type)PHWR
## factor(Reactor_Type)PWR
## Gross_Capacity_MWe ***
## I(Average_Concrete_Price^2)
## Duration
## Average_Concrete_Price
## factor(Country)BELARUS:factor(Reactor_Type)FBR
## factor(Country)BRAZIL:factor(Reactor_Type)FBR
## factor(Country)CANADA:factor(Reactor_Type)FBR
## factor(Country)CHINA:factor(Reactor_Type)FBR
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)FBR
## factor(Country)FRANCE:factor(Reactor_Type)FBR
## factor(Country)GERMANY:factor(Reactor_Type)FBR
## factor(Country)INDIA:factor(Reactor_Type)FBR
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)FBR
## factor(Country)JAPAN:factor(Reactor_Type)FBR .
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)FBR
## factor(Country)MEXICO:factor(Reactor_Type)FBR
## factor(Country)PAKISTAN:factor(Reactor_Type)FBR
## factor(Country)RUSSIA:factor(Reactor_Type)FBR
## factor(Country)SLOVAKIA:factor(Reactor_Type)FBR
## factor(Country)SWEDEN:factor(Reactor_Type)FBR
## factor(Country)SWITZERLAND:factor(Reactor_Type)FBR
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)FBR
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)FBR
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)FBR
## factor(Country)BELARUS:factor(Reactor_Type)GCR
## factor(Country)BRAZIL:factor(Reactor_Type)GCR
## factor(Country)CANADA:factor(Reactor_Type)GCR
## factor(Country)CHINA:factor(Reactor_Type)GCR
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)GCR
## factor(Country)FRANCE:factor(Reactor_Type)GCR
## factor(Country)GERMANY:factor(Reactor_Type)GCR
## factor(Country)INDIA:factor(Reactor_Type)GCR
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)GCR
## factor(Country)JAPAN:factor(Reactor_Type)GCR
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)GCR
## factor(Country)MEXICO:factor(Reactor_Type)GCR
## factor(Country)PAKISTAN:factor(Reactor_Type)GCR
## factor(Country)RUSSIA:factor(Reactor_Type)GCR
## factor(Country)SLOVAKIA:factor(Reactor_Type)GCR
## factor(Country)SWEDEN:factor(Reactor_Type)GCR
## factor(Country)SWITZERLAND:factor(Reactor_Type)GCR
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)GCR
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)GCR
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)GCR
## factor(Country)BELARUS:factor(Reactor_Type)HTGR
## factor(Country)BRAZIL:factor(Reactor_Type)HTGR
## factor(Country)CANADA:factor(Reactor_Type)HTGR
## factor(Country)CHINA:factor(Reactor_Type)HTGR ***
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)HTGR
## factor(Country)FRANCE:factor(Reactor_Type)HTGR
## factor(Country)GERMANY:factor(Reactor_Type)HTGR
## factor(Country)INDIA:factor(Reactor_Type)HTGR
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)HTGR
## factor(Country)JAPAN:factor(Reactor_Type)HTGR
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)HTGR
## factor(Country)MEXICO:factor(Reactor_Type)HTGR
## factor(Country)PAKISTAN:factor(Reactor_Type)HTGR
## factor(Country)RUSSIA:factor(Reactor_Type)HTGR
## factor(Country)SLOVAKIA:factor(Reactor_Type)HTGR
## factor(Country)SWEDEN:factor(Reactor_Type)HTGR
## factor(Country)SWITZERLAND:factor(Reactor_Type)HTGR
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)HTGR
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)HTGR
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)HTGR
## factor(Country)BELARUS:factor(Reactor_Type)LWGR
## factor(Country)BRAZIL:factor(Reactor_Type)LWGR
## factor(Country)CANADA:factor(Reactor_Type)LWGR
## factor(Country)CHINA:factor(Reactor_Type)LWGR
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)LWGR
## factor(Country)FRANCE:factor(Reactor_Type)LWGR
## factor(Country)GERMANY:factor(Reactor_Type)LWGR
## factor(Country)INDIA:factor(Reactor_Type)LWGR
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)LWGR
## factor(Country)JAPAN:factor(Reactor_Type)LWGR
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)LWGR
## factor(Country)MEXICO:factor(Reactor_Type)LWGR
## factor(Country)PAKISTAN:factor(Reactor_Type)LWGR
## factor(Country)RUSSIA:factor(Reactor_Type)LWGR
## factor(Country)SLOVAKIA:factor(Reactor_Type)LWGR
## factor(Country)SWEDEN:factor(Reactor_Type)LWGR
## factor(Country)SWITZERLAND:factor(Reactor_Type)LWGR
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)LWGR
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)LWGR
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)LWGR
## factor(Country)BELARUS:factor(Reactor_Type)PHWR
## factor(Country)BRAZIL:factor(Reactor_Type)PHWR
## factor(Country)CANADA:factor(Reactor_Type)PHWR
## factor(Country)CHINA:factor(Reactor_Type)PHWR
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)PHWR
## factor(Country)FRANCE:factor(Reactor_Type)PHWR
## factor(Country)GERMANY:factor(Reactor_Type)PHWR
## factor(Country)INDIA:factor(Reactor_Type)PHWR
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)PHWR
## factor(Country)JAPAN:factor(Reactor_Type)PHWR
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)PHWR
## factor(Country)MEXICO:factor(Reactor_Type)PHWR
## factor(Country)PAKISTAN:factor(Reactor_Type)PHWR
## factor(Country)RUSSIA:factor(Reactor_Type)PHWR
## factor(Country)SLOVAKIA:factor(Reactor_Type)PHWR
## factor(Country)SWEDEN:factor(Reactor_Type)PHWR
## factor(Country)SWITZERLAND:factor(Reactor_Type)PHWR
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)PHWR
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)PHWR
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)PHWR
## factor(Country)BELARUS:factor(Reactor_Type)PWR
## factor(Country)BRAZIL:factor(Reactor_Type)PWR
## factor(Country)CANADA:factor(Reactor_Type)PWR
## factor(Country)CHINA:factor(Reactor_Type)PWR
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)PWR
## factor(Country)FRANCE:factor(Reactor_Type)PWR
## factor(Country)GERMANY:factor(Reactor_Type)PWR
## factor(Country)INDIA:factor(Reactor_Type)PWR
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)PWR
## factor(Country)JAPAN:factor(Reactor_Type)PWR
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)PWR
## factor(Country)MEXICO:factor(Reactor_Type)PWR
## factor(Country)PAKISTAN:factor(Reactor_Type)PWR
## factor(Country)RUSSIA:factor(Reactor_Type)PWR
## factor(Country)SLOVAKIA:factor(Reactor_Type)PWR
## factor(Country)SWEDEN:factor(Reactor_Type)PWR
## factor(Country)SWITZERLAND:factor(Reactor_Type)PWR
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)PWR
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)PWR
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)PWR
## factor(Country)BELARUS:Average_Concrete_Price
## factor(Country)BRAZIL:Average_Concrete_Price
## factor(Country)CANADA:Average_Concrete_Price
## factor(Country)CHINA:Average_Concrete_Price
## factor(Country)CZECH REPUBLIC:Average_Concrete_Price
## factor(Country)FRANCE:Average_Concrete_Price
## factor(Country)GERMANY:Average_Concrete_Price
## factor(Country)INDIA:Average_Concrete_Price
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:Average_Concrete_Price
## factor(Country)JAPAN:Average_Concrete_Price
## factor(Country)KOREA, REPUBLIC OF:Average_Concrete_Price
## factor(Country)MEXICO:Average_Concrete_Price
## factor(Country)PAKISTAN:Average_Concrete_Price
## factor(Country)RUSSIA:Average_Concrete_Price
## factor(Country)SLOVAKIA:Average_Concrete_Price
## factor(Country)SWEDEN:Average_Concrete_Price
## factor(Country)SWITZERLAND:Average_Concrete_Price
## factor(Country)UNITED ARAB EMIRATES:Average_Concrete_Price
## factor(Country)UNITED KINGDOM:Average_Concrete_Price
## factor(Country)UNITED STATES OF AMERICA:Average_Concrete_Price *
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Residual standard error: 1.288 on 206 degrees of freedom
## Multiple R-squared: 0.7602, Adjusted R-squared: 0.6974
## F-statistic: 12.09 on 54 and 206 DF, p-value: < 0.00000000000000022
print("Average_Concrete_Price ^2 variable is also not significant. Therefore our interaction model is the best model.")
## [1] "Average_Concrete_Price ^2 variable is also not significant. Therefore our interaction model is the best model."
Assumptions testing
Linearity Assumption Test
# 1) Linearity Assumption test
# Plotting the residuals vs predicted value YÌ‚ plot.
# Residual vs fitted data plot
nuclear.best.model<-lm(Cost_Billion_Dollars~factor(Country)+factor(Reactor_Type)+Gross_Capacity_MWe+Duration+Average_Concrete_Price+factor(Country)*factor(Reactor_Type)+factor(Country)*Average_Concrete_Price, data = nuclear.df)
ggplot(nuclear.best.model, aes(x=.fitted, y=.resid)) +
geom_point() + geom_smooth()+
geom_hline(yintercept = 0)
## `geom_smooth()` using method = 'loess' and formula 'y ~ x'

print("Residual plot looks almost perfectly linear.")
## [1] "Residual plot looks almost perfectly linear."
Independence Assumption Test
# 2) Independence Assumption Test
print("Independence Assumption Test usually fails when the data for both dependent and independent variables are observed sequentially over a period of time-called time-series data. Since our dataset in NOT time-series data, we pass the Independence Assumption Test.")
## [1] "Independence Assumption Test usually fails when the data for both dependent and independent variables are observed sequentially over a period of time-called time-series data. Since our dataset in NOT time-series data, we pass the Independence Assumption Test."
Equal Variance Assumption
# Checking for Homoscedasticity Assumption
# Conducting a test for heteroscedasticity (non constant variance) and plotting a residual plot.
# Using Bursch Pagan in order to check for heteroscedasticity.
# H0: heteroscedasticity is not present (homoscedasticity)
# Ha: heteroscedasticity is present
nuclear.best.model<-lm(Cost_Billion_Dollars~factor(Country)+factor(Reactor_Type)+Gross_Capacity_MWe+Duration+Average_Concrete_Price+factor(Country)*factor(Reactor_Type)+factor(Country)*Average_Concrete_Price, data = nuclear.df)
library(lmtest)
bptest(nuclear.best.model)
##
## studentized Breusch-Pagan test
##
## data: nuclear.best.model
## BP = 19.912, df = 53, p-value = 1
print("As we can see from the BP Test, the p-value > 0.05. Therefore H0 cannot be rejected. This means that in our best fit model, the error terms have a constant variance i.e. homoscedasticity. ")
## [1] "As we can see from the BP Test, the p-value > 0.05. Therefore H0 cannot be rejected. This means that in our best fit model, the error terms have a constant variance i.e. homoscedasticity. "
# Plotting a scale location plot for visualisation.
ggplot(nuclear.best.model, aes(x=.fitted, y=sqrt(abs(.stdresid)))) +
geom_point() +
geom_hline(yintercept = 0) +
geom_smooth()+
ggtitle("Scale-Location plot : Standardized Residual vs Fitted values")
## `geom_smooth()` using method = 'loess' and formula 'y ~ x'
## Warning: Removed 16 rows containing non-finite values (stat_smooth).
## Warning: Removed 16 rows containing missing values (geom_point).

print("There appears to be no problem with homoscedasticity assumption.")
## [1] "There appears to be no problem with homoscedasticity assumption."
Normality Assumption
# Checking for Normality Assumption
# Testing Normality Assumption
# Shapiro - Wilk test
# H0: the sample data are significantly normally distributed
# Ha: the sample data are not significantly normally distributed
nuclear.best.model<-lm(Cost_Billion_Dollars~factor(Country)+factor(Reactor_Type)+Gross_Capacity_MWe+Duration+Average_Concrete_Price+factor(Country)*factor(Reactor_Type)+factor(Country)*Average_Concrete_Price, data = nuclear.df)
shapiro.test(residuals(nuclear.best.model))
##
## Shapiro-Wilk normality test
##
## data: residuals(nuclear.best.model)
## W = 0.67977, p-value < 0.00000000000000022
print("From the Shapiro-Wilk normality test, we can see that the p-value < 0.05. Therefore H0 has to be rejected. This means that the sample data are not significantly normally distributed. This is a problem.")
## [1] "From the Shapiro-Wilk normality test, we can see that the p-value < 0.05. Therefore H0 has to be rejected. This means that the sample data are not significantly normally distributed. This is a problem."
# Plotting a Normal Q-Q plot for visualisation.
ggplot(nuclear.df, aes(sample=nuclear.best.model$residuals)) +
stat_qq() +
stat_qq_line()

print("An S-shaped pattern of deviations indicates that the residuals have excessive kurtosis, i.e., there are either too many or two few large errors in both directions.")
## [1] "An S-shaped pattern of deviations indicates that the residuals have excessive kurtosis, i.e., there are either too many or two few large errors in both directions."
Checking for Outliers
# Detecting outliers by using Cook’s distance measure (using cooks.distance()>0.5 ) and Residual vs Leverage plot.
nuclear.best.model<-lm(Cost_Billion_Dollars~factor(Country)+factor(Reactor_Type)+Gross_Capacity_MWe+Duration+Average_Concrete_Price+factor(Country)*factor(Reactor_Type)+factor(Country)*Average_Concrete_Price, data = nuclear.df)
nuclear.df[cooks.distance(nuclear.best.model)>0.5,] # Having Cook statistics larger than 0.5
## Cost_Billion_Dollars Name Country Reactor_Type Gross_Capacity_MWe
## NA NA <NA> <NA> <NA> NA
## NA.1 NA <NA> <NA> <NA> NA
## NA.2 NA <NA> <NA> <NA> NA
## NA.3 NA <NA> <NA> <NA> NA
## NA.4 NA <NA> <NA> <NA> NA
## NA.5 NA <NA> <NA> <NA> NA
## NA.6 NA <NA> <NA> <NA> NA
## NA.7 NA <NA> <NA> <NA> NA
## NA.8 NA <NA> <NA> <NA> NA
## NA.9 NA <NA> <NA> <NA> NA
## NA.10 NA <NA> <NA> <NA> NA
## NA.11 NA <NA> <NA> <NA> NA
## NA.12 NA <NA> <NA> <NA> NA
## NA.13 NA <NA> <NA> <NA> NA
## NA.14 NA <NA> <NA> <NA> NA
## NA.15 NA <NA> <NA> <NA> NA
## Thermal_Capacity_MWt Efficiency_Percentage Starting_Year Duration
## NA NA NA NA NA
## NA.1 NA NA NA NA
## NA.2 NA NA NA NA
## NA.3 NA NA NA NA
## NA.4 NA NA NA NA
## NA.5 NA NA NA NA
## NA.6 NA NA NA NA
## NA.7 NA NA NA NA
## NA.8 NA NA NA NA
## NA.9 NA NA NA NA
## NA.10 NA NA NA NA
## NA.11 NA NA NA NA
## NA.12 NA NA NA NA
## NA.13 NA NA NA NA
## NA.14 NA NA NA NA
## NA.15 NA NA NA NA
## Average_Inflation_Percentage Average_Concrete_Price Average_Steel_Price
## NA NA NA NA
## NA.1 NA NA NA
## NA.2 NA NA NA
## NA.3 NA NA NA
## NA.4 NA NA NA
## NA.5 NA NA NA
## NA.6 NA NA NA
## NA.7 NA NA NA
## NA.8 NA NA NA
## NA.9 NA NA NA
## NA.10 NA NA NA
## NA.11 NA NA NA
## NA.12 NA NA NA
## NA.13 NA NA NA
## NA.14 NA NA NA
## NA.15 NA NA NA
plot(nuclear.best.model,pch=18,col="red",which=c(4))

print("There is not a single data point whose cook's distance is > 0.5. Hence according to Cook, no outlier detected.")
## [1] "There is not a single data point whose cook's distance is > 0.5. Hence according to Cook, no outlier detected."
# Further Visualisation
nuclear.best.model<-lm(Cost_Billion_Dollars~factor(Country)+factor(Reactor_Type)+Gross_Capacity_MWe+Duration+Average_Concrete_Price+factor(Country)*factor(Reactor_Type)+factor(Country)*Average_Concrete_Price, data = nuclear.df)
nuclear.df[cooks.distance(nuclear.best.model)>0.5,] # Having Cook statistics larger than 0.5
## Cost_Billion_Dollars Name Country Reactor_Type Gross_Capacity_MWe
## NA NA <NA> <NA> <NA> NA
## NA.1 NA <NA> <NA> <NA> NA
## NA.2 NA <NA> <NA> <NA> NA
## NA.3 NA <NA> <NA> <NA> NA
## NA.4 NA <NA> <NA> <NA> NA
## NA.5 NA <NA> <NA> <NA> NA
## NA.6 NA <NA> <NA> <NA> NA
## NA.7 NA <NA> <NA> <NA> NA
## NA.8 NA <NA> <NA> <NA> NA
## NA.9 NA <NA> <NA> <NA> NA
## NA.10 NA <NA> <NA> <NA> NA
## NA.11 NA <NA> <NA> <NA> NA
## NA.12 NA <NA> <NA> <NA> NA
## NA.13 NA <NA> <NA> <NA> NA
## NA.14 NA <NA> <NA> <NA> NA
## NA.15 NA <NA> <NA> <NA> NA
## Thermal_Capacity_MWt Efficiency_Percentage Starting_Year Duration
## NA NA NA NA NA
## NA.1 NA NA NA NA
## NA.2 NA NA NA NA
## NA.3 NA NA NA NA
## NA.4 NA NA NA NA
## NA.5 NA NA NA NA
## NA.6 NA NA NA NA
## NA.7 NA NA NA NA
## NA.8 NA NA NA NA
## NA.9 NA NA NA NA
## NA.10 NA NA NA NA
## NA.11 NA NA NA NA
## NA.12 NA NA NA NA
## NA.13 NA NA NA NA
## NA.14 NA NA NA NA
## NA.15 NA NA NA NA
## Average_Inflation_Percentage Average_Concrete_Price Average_Steel_Price
## NA NA NA NA
## NA.1 NA NA NA
## NA.2 NA NA NA
## NA.3 NA NA NA
## NA.4 NA NA NA
## NA.5 NA NA NA
## NA.6 NA NA NA
## NA.7 NA NA NA
## NA.8 NA NA NA
## NA.9 NA NA NA
## NA.10 NA NA NA
## NA.11 NA NA NA
## NA.12 NA NA NA
## NA.13 NA NA NA
## NA.14 NA NA NA
## NA.15 NA NA NA
plot(nuclear.best.model,pch=18,col="red",which=c(5))
## Warning: not plotting observations with leverage one:
## 138, 157, 162, 169, 170, 171, 180, 183, 184, 185, 186, 192, 193, 207, 218, 251
## Warning in sqrt(crit * p * (1 - hh)/hh): NaNs produced
## Warning in sqrt(crit * p * (1 - hh)/hh): NaNs produced

print("Again no outlier found.")
## [1] "Again no outlier found."
Box Cox Transformation
print("In order to correct the Normality Assumption, we shall try Box-Cox Transformation")
## [1] "In order to correct the Normality Assumption, we shall try Box-Cox Transformation"
# We shall now be doing Box-Cox Transformation
bc=boxcox(nuclear.best.model,lambda=seq(-1,1))

# Extracting best lambda
bestlambda=bc$x[which(bc$y==max(bc$y))]
bestlambda
## [1] 0.3131313
box.cox.nuclear.best.model<-lm((((Cost_Billion_Dollars^0.3131313)-1)/0.3131313)~factor(Country)+factor(Reactor_Type)+Gross_Capacity_MWe+Duration+Average_Concrete_Price+factor(Country)*factor(Reactor_Type)+factor(Country)*Average_Concrete_Price, data = nuclear.df)
summary(box.cox.nuclear.best.model)
##
## Call:
## lm(formula = (((Cost_Billion_Dollars^0.3131313) - 1)/0.3131313) ~
## factor(Country) + factor(Reactor_Type) + Gross_Capacity_MWe +
## Duration + Average_Concrete_Price + factor(Country) *
## factor(Reactor_Type) + factor(Country) * Average_Concrete_Price,
## data = nuclear.df)
##
## Residuals:
## Min 1Q Median 3Q Max
## -2.2124 -0.2117 0.0000 0.1649 2.3879
##
## Coefficients: (116 not defined because of singularities)
## Estimate
## (Intercept) -1.2490622
## factor(Country)BELARUS 1.1679093
## factor(Country)BRAZIL 1.0780712
## factor(Country)CANADA -1.0992791
## factor(Country)CHINA 0.2543635
## factor(Country)CZECH REPUBLIC -2.9549807
## factor(Country)FRANCE -1.1751006
## factor(Country)GERMANY -1.9427082
## factor(Country)INDIA 0.2313928
## factor(Country)IRAN, ISLAMIC REPUBLIC OF 2.2730605
## factor(Country)JAPAN -0.3061026
## factor(Country)KOREA, REPUBLIC OF 1.5654747
## factor(Country)MEXICO -1.1427450
## factor(Country)PAKISTAN -0.2675965
## factor(Country)RUSSIA 0.6228792
## factor(Country)SLOVAKIA 1.9839466
## factor(Country)SWEDEN -1.7974924
## factor(Country)SWITZERLAND 0.1589962
## factor(Country)UNITED ARAB EMIRATES 1.0654050
## factor(Country)UNITED KINGDOM -0.5828244
## factor(Country)UNITED STATES OF AMERICA -1.3401591
## factor(Reactor_Type)FBR 0.7344172
## factor(Reactor_Type)GCR 1.0804173
## factor(Reactor_Type)HTGR -0.0853000
## factor(Reactor_Type)LWGR -0.8997620
## factor(Reactor_Type)PHWR 0.5884096
## factor(Reactor_Type)PWR -0.0088574
## Gross_Capacity_MWe 0.0015698
## Duration 0.0029193
## Average_Concrete_Price 0.0069083
## factor(Country)BELARUS:factor(Reactor_Type)FBR NA
## factor(Country)BRAZIL:factor(Reactor_Type)FBR NA
## factor(Country)CANADA:factor(Reactor_Type)FBR NA
## factor(Country)CHINA:factor(Reactor_Type)FBR -0.7131681
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)FBR NA
## factor(Country)FRANCE:factor(Reactor_Type)FBR 2.5821429
## factor(Country)GERMANY:factor(Reactor_Type)FBR NA
## factor(Country)INDIA:factor(Reactor_Type)FBR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)FBR NA
## factor(Country)JAPAN:factor(Reactor_Type)FBR 4.0263063
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)FBR NA
## factor(Country)MEXICO:factor(Reactor_Type)FBR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)FBR NA
## factor(Country)RUSSIA:factor(Reactor_Type)FBR -0.4901081
## factor(Country)SLOVAKIA:factor(Reactor_Type)FBR NA
## factor(Country)SWEDEN:factor(Reactor_Type)FBR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)FBR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)FBR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)FBR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)FBR NA
## factor(Country)BELARUS:factor(Reactor_Type)GCR NA
## factor(Country)BRAZIL:factor(Reactor_Type)GCR NA
## factor(Country)CANADA:factor(Reactor_Type)GCR NA
## factor(Country)CHINA:factor(Reactor_Type)GCR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)GCR NA
## factor(Country)FRANCE:factor(Reactor_Type)GCR NA
## factor(Country)GERMANY:factor(Reactor_Type)GCR NA
## factor(Country)INDIA:factor(Reactor_Type)GCR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)GCR NA
## factor(Country)JAPAN:factor(Reactor_Type)GCR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)GCR NA
## factor(Country)MEXICO:factor(Reactor_Type)GCR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)GCR NA
## factor(Country)RUSSIA:factor(Reactor_Type)GCR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)GCR NA
## factor(Country)SWEDEN:factor(Reactor_Type)GCR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)GCR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)GCR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)GCR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)GCR NA
## factor(Country)BELARUS:factor(Reactor_Type)HTGR NA
## factor(Country)BRAZIL:factor(Reactor_Type)HTGR NA
## factor(Country)CANADA:factor(Reactor_Type)HTGR NA
## factor(Country)CHINA:factor(Reactor_Type)HTGR 4.9739328
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)HTGR NA
## factor(Country)FRANCE:factor(Reactor_Type)HTGR NA
## factor(Country)GERMANY:factor(Reactor_Type)HTGR 2.3992483
## factor(Country)INDIA:factor(Reactor_Type)HTGR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)HTGR NA
## factor(Country)JAPAN:factor(Reactor_Type)HTGR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)HTGR NA
## factor(Country)MEXICO:factor(Reactor_Type)HTGR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)HTGR NA
## factor(Country)RUSSIA:factor(Reactor_Type)HTGR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)HTGR NA
## factor(Country)SWEDEN:factor(Reactor_Type)HTGR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)HTGR NA
## factor(Country)BELARUS:factor(Reactor_Type)LWGR NA
## factor(Country)BRAZIL:factor(Reactor_Type)LWGR NA
## factor(Country)CANADA:factor(Reactor_Type)LWGR NA
## factor(Country)CHINA:factor(Reactor_Type)LWGR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)LWGR NA
## factor(Country)FRANCE:factor(Reactor_Type)LWGR NA
## factor(Country)GERMANY:factor(Reactor_Type)LWGR NA
## factor(Country)INDIA:factor(Reactor_Type)LWGR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)LWGR NA
## factor(Country)JAPAN:factor(Reactor_Type)LWGR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)LWGR NA
## factor(Country)MEXICO:factor(Reactor_Type)LWGR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)LWGR NA
## factor(Country)RUSSIA:factor(Reactor_Type)LWGR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)LWGR NA
## factor(Country)SWEDEN:factor(Reactor_Type)LWGR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)LWGR NA
## factor(Country)BELARUS:factor(Reactor_Type)PHWR NA
## factor(Country)BRAZIL:factor(Reactor_Type)PHWR NA
## factor(Country)CANADA:factor(Reactor_Type)PHWR -1.5478437
## factor(Country)CHINA:factor(Reactor_Type)PHWR -0.4314698
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)PHWR NA
## factor(Country)FRANCE:factor(Reactor_Type)PHWR NA
## factor(Country)GERMANY:factor(Reactor_Type)PHWR NA
## factor(Country)INDIA:factor(Reactor_Type)PHWR -1.2052579
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)PHWR NA
## factor(Country)JAPAN:factor(Reactor_Type)PHWR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)PHWR NA
## factor(Country)MEXICO:factor(Reactor_Type)PHWR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)PHWR NA
## factor(Country)RUSSIA:factor(Reactor_Type)PHWR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)PHWR NA
## factor(Country)SWEDEN:factor(Reactor_Type)PHWR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)PHWR NA
## factor(Country)BELARUS:factor(Reactor_Type)PWR NA
## factor(Country)BRAZIL:factor(Reactor_Type)PWR NA
## factor(Country)CANADA:factor(Reactor_Type)PWR NA
## factor(Country)CHINA:factor(Reactor_Type)PWR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)PWR NA
## factor(Country)FRANCE:factor(Reactor_Type)PWR NA
## factor(Country)GERMANY:factor(Reactor_Type)PWR NA
## factor(Country)INDIA:factor(Reactor_Type)PWR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)PWR NA
## factor(Country)JAPAN:factor(Reactor_Type)PWR 1.1220393
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)PWR NA
## factor(Country)MEXICO:factor(Reactor_Type)PWR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)PWR NA
## factor(Country)RUSSIA:factor(Reactor_Type)PWR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)PWR NA
## factor(Country)SWEDEN:factor(Reactor_Type)PWR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)PWR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)PWR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)PWR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)PWR NA
## factor(Country)BELARUS:Average_Concrete_Price NA
## factor(Country)BRAZIL:Average_Concrete_Price -0.0120626
## factor(Country)CANADA:Average_Concrete_Price 0.0176666
## factor(Country)CHINA:Average_Concrete_Price -0.0064437
## factor(Country)CZECH REPUBLIC:Average_Concrete_Price 0.0199471
## factor(Country)FRANCE:Average_Concrete_Price -0.0009984
## factor(Country)GERMANY:Average_Concrete_Price 0.0115714
## factor(Country)INDIA:Average_Concrete_Price -0.0031969
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:Average_Concrete_Price NA
## factor(Country)JAPAN:Average_Concrete_Price -0.0099341
## factor(Country)KOREA, REPUBLIC OF:Average_Concrete_Price -0.0116912
## factor(Country)MEXICO:Average_Concrete_Price NA
## factor(Country)PAKISTAN:Average_Concrete_Price -0.0012262
## factor(Country)RUSSIA:Average_Concrete_Price -0.0083705
## factor(Country)SLOVAKIA:Average_Concrete_Price -0.0088279
## factor(Country)SWEDEN:Average_Concrete_Price NA
## factor(Country)SWITZERLAND:Average_Concrete_Price NA
## factor(Country)UNITED ARAB EMIRATES:Average_Concrete_Price -0.0053986
## factor(Country)UNITED KINGDOM:Average_Concrete_Price NA
## factor(Country)UNITED STATES OF AMERICA:Average_Concrete_Price 0.0223788
## Std. Error
## (Intercept) 1.3222606
## factor(Country)BELARUS 1.9180568
## factor(Country)BRAZIL 2.1152391
## factor(Country)CANADA 1.4416925
## factor(Country)CHINA 1.4285859
## factor(Country)CZECH REPUBLIC 2.3513185
## factor(Country)FRANCE 6.7113432
## factor(Country)GERMANY 2.0611106
## factor(Country)INDIA 1.6496586
## factor(Country)IRAN, ISLAMIC REPUBLIC OF 1.3061008
## factor(Country)JAPAN 1.8902084
## factor(Country)KOREA, REPUBLIC OF 3.9708744
## factor(Country)MEXICO 1.2807125
## factor(Country)PAKISTAN 0.9432499
## factor(Country)RUSSIA 1.4460758
## factor(Country)SLOVAKIA 58.9954776
## factor(Country)SWEDEN 0.7853452
## factor(Country)SWITZERLAND 1.2947498
## factor(Country)UNITED ARAB EMIRATES 11.1959119
## factor(Country)UNITED KINGDOM 1.4187279
## factor(Country)UNITED STATES OF AMERICA 1.3300417
## factor(Reactor_Type)FBR 0.4206638
## factor(Reactor_Type)GCR 0.8798793
## factor(Reactor_Type)HTGR 0.4147064
## factor(Reactor_Type)LWGR 0.5430461
## factor(Reactor_Type)PHWR 1.1056330
## factor(Reactor_Type)PWR 0.1113062
## Gross_Capacity_MWe 0.0001712
## Duration 0.0140898
## Average_Concrete_Price 0.0081557
## factor(Country)BELARUS:factor(Reactor_Type)FBR NA
## factor(Country)BRAZIL:factor(Reactor_Type)FBR NA
## factor(Country)CANADA:factor(Reactor_Type)FBR NA
## factor(Country)CHINA:factor(Reactor_Type)FBR 0.6938224
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)FBR NA
## factor(Country)FRANCE:factor(Reactor_Type)FBR 1.9387510
## factor(Country)GERMANY:factor(Reactor_Type)FBR NA
## factor(Country)INDIA:factor(Reactor_Type)FBR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)FBR NA
## factor(Country)JAPAN:factor(Reactor_Type)FBR 2.1356066
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)FBR NA
## factor(Country)MEXICO:factor(Reactor_Type)FBR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)FBR NA
## factor(Country)RUSSIA:factor(Reactor_Type)FBR 0.6070807
## factor(Country)SLOVAKIA:factor(Reactor_Type)FBR NA
## factor(Country)SWEDEN:factor(Reactor_Type)FBR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)FBR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)FBR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)FBR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)FBR NA
## factor(Country)BELARUS:factor(Reactor_Type)GCR NA
## factor(Country)BRAZIL:factor(Reactor_Type)GCR NA
## factor(Country)CANADA:factor(Reactor_Type)GCR NA
## factor(Country)CHINA:factor(Reactor_Type)GCR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)GCR NA
## factor(Country)FRANCE:factor(Reactor_Type)GCR NA
## factor(Country)GERMANY:factor(Reactor_Type)GCR NA
## factor(Country)INDIA:factor(Reactor_Type)GCR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)GCR NA
## factor(Country)JAPAN:factor(Reactor_Type)GCR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)GCR NA
## factor(Country)MEXICO:factor(Reactor_Type)GCR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)GCR NA
## factor(Country)RUSSIA:factor(Reactor_Type)GCR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)GCR NA
## factor(Country)SWEDEN:factor(Reactor_Type)GCR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)GCR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)GCR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)GCR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)GCR NA
## factor(Country)BELARUS:factor(Reactor_Type)HTGR NA
## factor(Country)BRAZIL:factor(Reactor_Type)HTGR NA
## factor(Country)CANADA:factor(Reactor_Type)HTGR NA
## factor(Country)CHINA:factor(Reactor_Type)HTGR 0.6934771
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)HTGR NA
## factor(Country)FRANCE:factor(Reactor_Type)HTGR NA
## factor(Country)GERMANY:factor(Reactor_Type)HTGR 0.9237666
## factor(Country)INDIA:factor(Reactor_Type)HTGR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)HTGR NA
## factor(Country)JAPAN:factor(Reactor_Type)HTGR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)HTGR NA
## factor(Country)MEXICO:factor(Reactor_Type)HTGR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)HTGR NA
## factor(Country)RUSSIA:factor(Reactor_Type)HTGR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)HTGR NA
## factor(Country)SWEDEN:factor(Reactor_Type)HTGR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)HTGR NA
## factor(Country)BELARUS:factor(Reactor_Type)LWGR NA
## factor(Country)BRAZIL:factor(Reactor_Type)LWGR NA
## factor(Country)CANADA:factor(Reactor_Type)LWGR NA
## factor(Country)CHINA:factor(Reactor_Type)LWGR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)LWGR NA
## factor(Country)FRANCE:factor(Reactor_Type)LWGR NA
## factor(Country)GERMANY:factor(Reactor_Type)LWGR NA
## factor(Country)INDIA:factor(Reactor_Type)LWGR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)LWGR NA
## factor(Country)JAPAN:factor(Reactor_Type)LWGR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)LWGR NA
## factor(Country)MEXICO:factor(Reactor_Type)LWGR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)LWGR NA
## factor(Country)RUSSIA:factor(Reactor_Type)LWGR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)LWGR NA
## factor(Country)SWEDEN:factor(Reactor_Type)LWGR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)LWGR NA
## factor(Country)BELARUS:factor(Reactor_Type)PHWR NA
## factor(Country)BRAZIL:factor(Reactor_Type)PHWR NA
## factor(Country)CANADA:factor(Reactor_Type)PHWR 1.2503110
## factor(Country)CHINA:factor(Reactor_Type)PHWR 1.1862638
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)PHWR NA
## factor(Country)FRANCE:factor(Reactor_Type)PHWR NA
## factor(Country)GERMANY:factor(Reactor_Type)PHWR NA
## factor(Country)INDIA:factor(Reactor_Type)PHWR 1.2210934
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)PHWR NA
## factor(Country)JAPAN:factor(Reactor_Type)PHWR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)PHWR NA
## factor(Country)MEXICO:factor(Reactor_Type)PHWR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)PHWR NA
## factor(Country)RUSSIA:factor(Reactor_Type)PHWR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)PHWR NA
## factor(Country)SWEDEN:factor(Reactor_Type)PHWR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)PHWR NA
## factor(Country)BELARUS:factor(Reactor_Type)PWR NA
## factor(Country)BRAZIL:factor(Reactor_Type)PWR NA
## factor(Country)CANADA:factor(Reactor_Type)PWR NA
## factor(Country)CHINA:factor(Reactor_Type)PWR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)PWR NA
## factor(Country)FRANCE:factor(Reactor_Type)PWR NA
## factor(Country)GERMANY:factor(Reactor_Type)PWR NA
## factor(Country)INDIA:factor(Reactor_Type)PWR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)PWR NA
## factor(Country)JAPAN:factor(Reactor_Type)PWR 1.6509116
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)PWR NA
## factor(Country)MEXICO:factor(Reactor_Type)PWR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)PWR NA
## factor(Country)RUSSIA:factor(Reactor_Type)PWR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)PWR NA
## factor(Country)SWEDEN:factor(Reactor_Type)PWR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)PWR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)PWR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)PWR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)PWR NA
## factor(Country)BELARUS:Average_Concrete_Price NA
## factor(Country)BRAZIL:Average_Concrete_Price 0.0198478
## factor(Country)CANADA:Average_Concrete_Price 0.0089759
## factor(Country)CHINA:Average_Concrete_Price 0.0084474
## factor(Country)CZECH REPUBLIC:Average_Concrete_Price 0.0196973
## factor(Country)FRANCE:Average_Concrete_Price 0.0565118
## factor(Country)GERMANY:Average_Concrete_Price 0.0222364
## factor(Country)INDIA:Average_Concrete_Price 0.0093095
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:Average_Concrete_Price NA
## factor(Country)JAPAN:Average_Concrete_Price 0.0308784
## factor(Country)KOREA, REPUBLIC OF:Average_Concrete_Price 0.0180509
## factor(Country)MEXICO:Average_Concrete_Price NA
## factor(Country)PAKISTAN:Average_Concrete_Price 0.0095338
## factor(Country)RUSSIA:Average_Concrete_Price 0.0086293
## factor(Country)SLOVAKIA:Average_Concrete_Price 0.5110036
## factor(Country)SWEDEN:Average_Concrete_Price NA
## factor(Country)SWITZERLAND:Average_Concrete_Price NA
## factor(Country)UNITED ARAB EMIRATES:Average_Concrete_Price 0.0442214
## factor(Country)UNITED KINGDOM:Average_Concrete_Price NA
## factor(Country)UNITED STATES OF AMERICA:Average_Concrete_Price 0.0077465
## t value
## (Intercept) -0.945
## factor(Country)BELARUS 0.609
## factor(Country)BRAZIL 0.510
## factor(Country)CANADA -0.762
## factor(Country)CHINA 0.178
## factor(Country)CZECH REPUBLIC -1.257
## factor(Country)FRANCE -0.175
## factor(Country)GERMANY -0.943
## factor(Country)INDIA 0.140
## factor(Country)IRAN, ISLAMIC REPUBLIC OF 1.740
## factor(Country)JAPAN -0.162
## factor(Country)KOREA, REPUBLIC OF 0.394
## factor(Country)MEXICO -0.892
## factor(Country)PAKISTAN -0.284
## factor(Country)RUSSIA 0.431
## factor(Country)SLOVAKIA 0.034
## factor(Country)SWEDEN -2.289
## factor(Country)SWITZERLAND 0.123
## factor(Country)UNITED ARAB EMIRATES 0.095
## factor(Country)UNITED KINGDOM -0.411
## factor(Country)UNITED STATES OF AMERICA -1.008
## factor(Reactor_Type)FBR 1.746
## factor(Reactor_Type)GCR 1.228
## factor(Reactor_Type)HTGR -0.206
## factor(Reactor_Type)LWGR -1.657
## factor(Reactor_Type)PHWR 0.532
## factor(Reactor_Type)PWR -0.080
## Gross_Capacity_MWe 9.171
## Duration 0.207
## Average_Concrete_Price 0.847
## factor(Country)BELARUS:factor(Reactor_Type)FBR NA
## factor(Country)BRAZIL:factor(Reactor_Type)FBR NA
## factor(Country)CANADA:factor(Reactor_Type)FBR NA
## factor(Country)CHINA:factor(Reactor_Type)FBR -1.028
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)FBR NA
## factor(Country)FRANCE:factor(Reactor_Type)FBR 1.332
## factor(Country)GERMANY:factor(Reactor_Type)FBR NA
## factor(Country)INDIA:factor(Reactor_Type)FBR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)FBR NA
## factor(Country)JAPAN:factor(Reactor_Type)FBR 1.885
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)FBR NA
## factor(Country)MEXICO:factor(Reactor_Type)FBR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)FBR NA
## factor(Country)RUSSIA:factor(Reactor_Type)FBR -0.807
## factor(Country)SLOVAKIA:factor(Reactor_Type)FBR NA
## factor(Country)SWEDEN:factor(Reactor_Type)FBR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)FBR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)FBR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)FBR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)FBR NA
## factor(Country)BELARUS:factor(Reactor_Type)GCR NA
## factor(Country)BRAZIL:factor(Reactor_Type)GCR NA
## factor(Country)CANADA:factor(Reactor_Type)GCR NA
## factor(Country)CHINA:factor(Reactor_Type)GCR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)GCR NA
## factor(Country)FRANCE:factor(Reactor_Type)GCR NA
## factor(Country)GERMANY:factor(Reactor_Type)GCR NA
## factor(Country)INDIA:factor(Reactor_Type)GCR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)GCR NA
## factor(Country)JAPAN:factor(Reactor_Type)GCR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)GCR NA
## factor(Country)MEXICO:factor(Reactor_Type)GCR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)GCR NA
## factor(Country)RUSSIA:factor(Reactor_Type)GCR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)GCR NA
## factor(Country)SWEDEN:factor(Reactor_Type)GCR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)GCR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)GCR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)GCR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)GCR NA
## factor(Country)BELARUS:factor(Reactor_Type)HTGR NA
## factor(Country)BRAZIL:factor(Reactor_Type)HTGR NA
## factor(Country)CANADA:factor(Reactor_Type)HTGR NA
## factor(Country)CHINA:factor(Reactor_Type)HTGR 7.172
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)HTGR NA
## factor(Country)FRANCE:factor(Reactor_Type)HTGR NA
## factor(Country)GERMANY:factor(Reactor_Type)HTGR 2.597
## factor(Country)INDIA:factor(Reactor_Type)HTGR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)HTGR NA
## factor(Country)JAPAN:factor(Reactor_Type)HTGR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)HTGR NA
## factor(Country)MEXICO:factor(Reactor_Type)HTGR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)HTGR NA
## factor(Country)RUSSIA:factor(Reactor_Type)HTGR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)HTGR NA
## factor(Country)SWEDEN:factor(Reactor_Type)HTGR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)HTGR NA
## factor(Country)BELARUS:factor(Reactor_Type)LWGR NA
## factor(Country)BRAZIL:factor(Reactor_Type)LWGR NA
## factor(Country)CANADA:factor(Reactor_Type)LWGR NA
## factor(Country)CHINA:factor(Reactor_Type)LWGR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)LWGR NA
## factor(Country)FRANCE:factor(Reactor_Type)LWGR NA
## factor(Country)GERMANY:factor(Reactor_Type)LWGR NA
## factor(Country)INDIA:factor(Reactor_Type)LWGR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)LWGR NA
## factor(Country)JAPAN:factor(Reactor_Type)LWGR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)LWGR NA
## factor(Country)MEXICO:factor(Reactor_Type)LWGR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)LWGR NA
## factor(Country)RUSSIA:factor(Reactor_Type)LWGR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)LWGR NA
## factor(Country)SWEDEN:factor(Reactor_Type)LWGR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)LWGR NA
## factor(Country)BELARUS:factor(Reactor_Type)PHWR NA
## factor(Country)BRAZIL:factor(Reactor_Type)PHWR NA
## factor(Country)CANADA:factor(Reactor_Type)PHWR -1.238
## factor(Country)CHINA:factor(Reactor_Type)PHWR -0.364
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)PHWR NA
## factor(Country)FRANCE:factor(Reactor_Type)PHWR NA
## factor(Country)GERMANY:factor(Reactor_Type)PHWR NA
## factor(Country)INDIA:factor(Reactor_Type)PHWR -0.987
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)PHWR NA
## factor(Country)JAPAN:factor(Reactor_Type)PHWR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)PHWR NA
## factor(Country)MEXICO:factor(Reactor_Type)PHWR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)PHWR NA
## factor(Country)RUSSIA:factor(Reactor_Type)PHWR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)PHWR NA
## factor(Country)SWEDEN:factor(Reactor_Type)PHWR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)PHWR NA
## factor(Country)BELARUS:factor(Reactor_Type)PWR NA
## factor(Country)BRAZIL:factor(Reactor_Type)PWR NA
## factor(Country)CANADA:factor(Reactor_Type)PWR NA
## factor(Country)CHINA:factor(Reactor_Type)PWR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)PWR NA
## factor(Country)FRANCE:factor(Reactor_Type)PWR NA
## factor(Country)GERMANY:factor(Reactor_Type)PWR NA
## factor(Country)INDIA:factor(Reactor_Type)PWR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)PWR NA
## factor(Country)JAPAN:factor(Reactor_Type)PWR 0.680
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)PWR NA
## factor(Country)MEXICO:factor(Reactor_Type)PWR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)PWR NA
## factor(Country)RUSSIA:factor(Reactor_Type)PWR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)PWR NA
## factor(Country)SWEDEN:factor(Reactor_Type)PWR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)PWR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)PWR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)PWR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)PWR NA
## factor(Country)BELARUS:Average_Concrete_Price NA
## factor(Country)BRAZIL:Average_Concrete_Price -0.608
## factor(Country)CANADA:Average_Concrete_Price 1.968
## factor(Country)CHINA:Average_Concrete_Price -0.763
## factor(Country)CZECH REPUBLIC:Average_Concrete_Price 1.013
## factor(Country)FRANCE:Average_Concrete_Price -0.018
## factor(Country)GERMANY:Average_Concrete_Price 0.520
## factor(Country)INDIA:Average_Concrete_Price -0.343
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:Average_Concrete_Price NA
## factor(Country)JAPAN:Average_Concrete_Price -0.322
## factor(Country)KOREA, REPUBLIC OF:Average_Concrete_Price -0.648
## factor(Country)MEXICO:Average_Concrete_Price NA
## factor(Country)PAKISTAN:Average_Concrete_Price -0.129
## factor(Country)RUSSIA:Average_Concrete_Price -0.970
## factor(Country)SLOVAKIA:Average_Concrete_Price -0.017
## factor(Country)SWEDEN:Average_Concrete_Price NA
## factor(Country)SWITZERLAND:Average_Concrete_Price NA
## factor(Country)UNITED ARAB EMIRATES:Average_Concrete_Price -0.122
## factor(Country)UNITED KINGDOM:Average_Concrete_Price NA
## factor(Country)UNITED STATES OF AMERICA:Average_Concrete_Price 2.889
## Pr(>|t|)
## (Intercept) 0.34594
## factor(Country)BELARUS 0.54326
## factor(Country)BRAZIL 0.61083
## factor(Country)CANADA 0.44663
## factor(Country)CHINA 0.85886
## factor(Country)CZECH REPUBLIC 0.21027
## factor(Country)FRANCE 0.86118
## factor(Country)GERMANY 0.34701
## factor(Country)INDIA 0.88859
## factor(Country)IRAN, ISLAMIC REPUBLIC OF 0.08329
## factor(Country)JAPAN 0.87151
## factor(Country)KOREA, REPUBLIC OF 0.69381
## factor(Country)MEXICO 0.37328
## factor(Country)PAKISTAN 0.77693
## factor(Country)RUSSIA 0.66711
## factor(Country)SLOVAKIA 0.97321
## factor(Country)SWEDEN 0.02310
## factor(Country)SWITZERLAND 0.90238
## factor(Country)UNITED ARAB EMIRATES 0.92428
## factor(Country)UNITED KINGDOM 0.68164
## factor(Country)UNITED STATES OF AMERICA 0.31482
## factor(Reactor_Type)FBR 0.08232
## factor(Reactor_Type)GCR 0.22087
## factor(Reactor_Type)HTGR 0.83724
## factor(Reactor_Type)LWGR 0.09906
## factor(Reactor_Type)PHWR 0.59516
## factor(Reactor_Type)PWR 0.93665
## Gross_Capacity_MWe < 0.0000000000000002
## Duration 0.83606
## Average_Concrete_Price 0.39794
## factor(Country)BELARUS:factor(Reactor_Type)FBR NA
## factor(Country)BRAZIL:factor(Reactor_Type)FBR NA
## factor(Country)CANADA:factor(Reactor_Type)FBR NA
## factor(Country)CHINA:factor(Reactor_Type)FBR 0.30520
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)FBR NA
## factor(Country)FRANCE:factor(Reactor_Type)FBR 0.18437
## factor(Country)GERMANY:factor(Reactor_Type)FBR NA
## factor(Country)INDIA:factor(Reactor_Type)FBR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)FBR NA
## factor(Country)JAPAN:factor(Reactor_Type)FBR 0.06079
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)FBR NA
## factor(Country)MEXICO:factor(Reactor_Type)FBR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)FBR NA
## factor(Country)RUSSIA:factor(Reactor_Type)FBR 0.42041
## factor(Country)SLOVAKIA:factor(Reactor_Type)FBR NA
## factor(Country)SWEDEN:factor(Reactor_Type)FBR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)FBR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)FBR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)FBR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)FBR NA
## factor(Country)BELARUS:factor(Reactor_Type)GCR NA
## factor(Country)BRAZIL:factor(Reactor_Type)GCR NA
## factor(Country)CANADA:factor(Reactor_Type)GCR NA
## factor(Country)CHINA:factor(Reactor_Type)GCR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)GCR NA
## factor(Country)FRANCE:factor(Reactor_Type)GCR NA
## factor(Country)GERMANY:factor(Reactor_Type)GCR NA
## factor(Country)INDIA:factor(Reactor_Type)GCR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)GCR NA
## factor(Country)JAPAN:factor(Reactor_Type)GCR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)GCR NA
## factor(Country)MEXICO:factor(Reactor_Type)GCR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)GCR NA
## factor(Country)RUSSIA:factor(Reactor_Type)GCR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)GCR NA
## factor(Country)SWEDEN:factor(Reactor_Type)GCR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)GCR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)GCR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)GCR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)GCR NA
## factor(Country)BELARUS:factor(Reactor_Type)HTGR NA
## factor(Country)BRAZIL:factor(Reactor_Type)HTGR NA
## factor(Country)CANADA:factor(Reactor_Type)HTGR NA
## factor(Country)CHINA:factor(Reactor_Type)HTGR 0.0000000000129
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)HTGR NA
## factor(Country)FRANCE:factor(Reactor_Type)HTGR NA
## factor(Country)GERMANY:factor(Reactor_Type)HTGR 0.01007
## factor(Country)INDIA:factor(Reactor_Type)HTGR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)HTGR NA
## factor(Country)JAPAN:factor(Reactor_Type)HTGR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)HTGR NA
## factor(Country)MEXICO:factor(Reactor_Type)HTGR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)HTGR NA
## factor(Country)RUSSIA:factor(Reactor_Type)HTGR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)HTGR NA
## factor(Country)SWEDEN:factor(Reactor_Type)HTGR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)HTGR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)HTGR NA
## factor(Country)BELARUS:factor(Reactor_Type)LWGR NA
## factor(Country)BRAZIL:factor(Reactor_Type)LWGR NA
## factor(Country)CANADA:factor(Reactor_Type)LWGR NA
## factor(Country)CHINA:factor(Reactor_Type)LWGR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)LWGR NA
## factor(Country)FRANCE:factor(Reactor_Type)LWGR NA
## factor(Country)GERMANY:factor(Reactor_Type)LWGR NA
## factor(Country)INDIA:factor(Reactor_Type)LWGR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)LWGR NA
## factor(Country)JAPAN:factor(Reactor_Type)LWGR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)LWGR NA
## factor(Country)MEXICO:factor(Reactor_Type)LWGR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)LWGR NA
## factor(Country)RUSSIA:factor(Reactor_Type)LWGR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)LWGR NA
## factor(Country)SWEDEN:factor(Reactor_Type)LWGR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)LWGR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)LWGR NA
## factor(Country)BELARUS:factor(Reactor_Type)PHWR NA
## factor(Country)BRAZIL:factor(Reactor_Type)PHWR NA
## factor(Country)CANADA:factor(Reactor_Type)PHWR 0.21713
## factor(Country)CHINA:factor(Reactor_Type)PHWR 0.71644
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)PHWR NA
## factor(Country)FRANCE:factor(Reactor_Type)PHWR NA
## factor(Country)GERMANY:factor(Reactor_Type)PHWR NA
## factor(Country)INDIA:factor(Reactor_Type)PHWR 0.32478
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)PHWR NA
## factor(Country)JAPAN:factor(Reactor_Type)PHWR NA
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)PHWR NA
## factor(Country)MEXICO:factor(Reactor_Type)PHWR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)PHWR NA
## factor(Country)RUSSIA:factor(Reactor_Type)PHWR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)PHWR NA
## factor(Country)SWEDEN:factor(Reactor_Type)PHWR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)PHWR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)PHWR NA
## factor(Country)BELARUS:factor(Reactor_Type)PWR NA
## factor(Country)BRAZIL:factor(Reactor_Type)PWR NA
## factor(Country)CANADA:factor(Reactor_Type)PWR NA
## factor(Country)CHINA:factor(Reactor_Type)PWR NA
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)PWR NA
## factor(Country)FRANCE:factor(Reactor_Type)PWR NA
## factor(Country)GERMANY:factor(Reactor_Type)PWR NA
## factor(Country)INDIA:factor(Reactor_Type)PWR NA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)PWR NA
## factor(Country)JAPAN:factor(Reactor_Type)PWR 0.49749
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)PWR NA
## factor(Country)MEXICO:factor(Reactor_Type)PWR NA
## factor(Country)PAKISTAN:factor(Reactor_Type)PWR NA
## factor(Country)RUSSIA:factor(Reactor_Type)PWR NA
## factor(Country)SLOVAKIA:factor(Reactor_Type)PWR NA
## factor(Country)SWEDEN:factor(Reactor_Type)PWR NA
## factor(Country)SWITZERLAND:factor(Reactor_Type)PWR NA
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)PWR NA
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)PWR NA
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)PWR NA
## factor(Country)BELARUS:Average_Concrete_Price NA
## factor(Country)BRAZIL:Average_Concrete_Price 0.54402
## factor(Country)CANADA:Average_Concrete_Price 0.05038
## factor(Country)CHINA:Average_Concrete_Price 0.44645
## factor(Country)CZECH REPUBLIC:Average_Concrete_Price 0.31239
## factor(Country)FRANCE:Average_Concrete_Price 0.98592
## factor(Country)GERMANY:Average_Concrete_Price 0.60335
## factor(Country)INDIA:Average_Concrete_Price 0.73164
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:Average_Concrete_Price NA
## factor(Country)JAPAN:Average_Concrete_Price 0.74799
## factor(Country)KOREA, REPUBLIC OF:Average_Concrete_Price 0.51791
## factor(Country)MEXICO:Average_Concrete_Price NA
## factor(Country)PAKISTAN:Average_Concrete_Price 0.89779
## factor(Country)RUSSIA:Average_Concrete_Price 0.33317
## factor(Country)SLOVAKIA:Average_Concrete_Price 0.98623
## factor(Country)SWEDEN:Average_Concrete_Price NA
## factor(Country)SWITZERLAND:Average_Concrete_Price NA
## factor(Country)UNITED ARAB EMIRATES:Average_Concrete_Price 0.90295
## factor(Country)UNITED KINGDOM:Average_Concrete_Price NA
## factor(Country)UNITED STATES OF AMERICA:Average_Concrete_Price 0.00428
##
## (Intercept)
## factor(Country)BELARUS
## factor(Country)BRAZIL
## factor(Country)CANADA
## factor(Country)CHINA
## factor(Country)CZECH REPUBLIC
## factor(Country)FRANCE
## factor(Country)GERMANY
## factor(Country)INDIA
## factor(Country)IRAN, ISLAMIC REPUBLIC OF .
## factor(Country)JAPAN
## factor(Country)KOREA, REPUBLIC OF
## factor(Country)MEXICO
## factor(Country)PAKISTAN
## factor(Country)RUSSIA
## factor(Country)SLOVAKIA
## factor(Country)SWEDEN *
## factor(Country)SWITZERLAND
## factor(Country)UNITED ARAB EMIRATES
## factor(Country)UNITED KINGDOM
## factor(Country)UNITED STATES OF AMERICA
## factor(Reactor_Type)FBR .
## factor(Reactor_Type)GCR
## factor(Reactor_Type)HTGR
## factor(Reactor_Type)LWGR .
## factor(Reactor_Type)PHWR
## factor(Reactor_Type)PWR
## Gross_Capacity_MWe ***
## Duration
## Average_Concrete_Price
## factor(Country)BELARUS:factor(Reactor_Type)FBR
## factor(Country)BRAZIL:factor(Reactor_Type)FBR
## factor(Country)CANADA:factor(Reactor_Type)FBR
## factor(Country)CHINA:factor(Reactor_Type)FBR
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)FBR
## factor(Country)FRANCE:factor(Reactor_Type)FBR
## factor(Country)GERMANY:factor(Reactor_Type)FBR
## factor(Country)INDIA:factor(Reactor_Type)FBR
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)FBR
## factor(Country)JAPAN:factor(Reactor_Type)FBR .
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)FBR
## factor(Country)MEXICO:factor(Reactor_Type)FBR
## factor(Country)PAKISTAN:factor(Reactor_Type)FBR
## factor(Country)RUSSIA:factor(Reactor_Type)FBR
## factor(Country)SLOVAKIA:factor(Reactor_Type)FBR
## factor(Country)SWEDEN:factor(Reactor_Type)FBR
## factor(Country)SWITZERLAND:factor(Reactor_Type)FBR
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)FBR
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)FBR
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)FBR
## factor(Country)BELARUS:factor(Reactor_Type)GCR
## factor(Country)BRAZIL:factor(Reactor_Type)GCR
## factor(Country)CANADA:factor(Reactor_Type)GCR
## factor(Country)CHINA:factor(Reactor_Type)GCR
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)GCR
## factor(Country)FRANCE:factor(Reactor_Type)GCR
## factor(Country)GERMANY:factor(Reactor_Type)GCR
## factor(Country)INDIA:factor(Reactor_Type)GCR
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)GCR
## factor(Country)JAPAN:factor(Reactor_Type)GCR
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)GCR
## factor(Country)MEXICO:factor(Reactor_Type)GCR
## factor(Country)PAKISTAN:factor(Reactor_Type)GCR
## factor(Country)RUSSIA:factor(Reactor_Type)GCR
## factor(Country)SLOVAKIA:factor(Reactor_Type)GCR
## factor(Country)SWEDEN:factor(Reactor_Type)GCR
## factor(Country)SWITZERLAND:factor(Reactor_Type)GCR
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)GCR
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)GCR
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)GCR
## factor(Country)BELARUS:factor(Reactor_Type)HTGR
## factor(Country)BRAZIL:factor(Reactor_Type)HTGR
## factor(Country)CANADA:factor(Reactor_Type)HTGR
## factor(Country)CHINA:factor(Reactor_Type)HTGR ***
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)HTGR
## factor(Country)FRANCE:factor(Reactor_Type)HTGR
## factor(Country)GERMANY:factor(Reactor_Type)HTGR *
## factor(Country)INDIA:factor(Reactor_Type)HTGR
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)HTGR
## factor(Country)JAPAN:factor(Reactor_Type)HTGR
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)HTGR
## factor(Country)MEXICO:factor(Reactor_Type)HTGR
## factor(Country)PAKISTAN:factor(Reactor_Type)HTGR
## factor(Country)RUSSIA:factor(Reactor_Type)HTGR
## factor(Country)SLOVAKIA:factor(Reactor_Type)HTGR
## factor(Country)SWEDEN:factor(Reactor_Type)HTGR
## factor(Country)SWITZERLAND:factor(Reactor_Type)HTGR
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)HTGR
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)HTGR
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)HTGR
## factor(Country)BELARUS:factor(Reactor_Type)LWGR
## factor(Country)BRAZIL:factor(Reactor_Type)LWGR
## factor(Country)CANADA:factor(Reactor_Type)LWGR
## factor(Country)CHINA:factor(Reactor_Type)LWGR
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)LWGR
## factor(Country)FRANCE:factor(Reactor_Type)LWGR
## factor(Country)GERMANY:factor(Reactor_Type)LWGR
## factor(Country)INDIA:factor(Reactor_Type)LWGR
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)LWGR
## factor(Country)JAPAN:factor(Reactor_Type)LWGR
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)LWGR
## factor(Country)MEXICO:factor(Reactor_Type)LWGR
## factor(Country)PAKISTAN:factor(Reactor_Type)LWGR
## factor(Country)RUSSIA:factor(Reactor_Type)LWGR
## factor(Country)SLOVAKIA:factor(Reactor_Type)LWGR
## factor(Country)SWEDEN:factor(Reactor_Type)LWGR
## factor(Country)SWITZERLAND:factor(Reactor_Type)LWGR
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)LWGR
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)LWGR
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)LWGR
## factor(Country)BELARUS:factor(Reactor_Type)PHWR
## factor(Country)BRAZIL:factor(Reactor_Type)PHWR
## factor(Country)CANADA:factor(Reactor_Type)PHWR
## factor(Country)CHINA:factor(Reactor_Type)PHWR
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)PHWR
## factor(Country)FRANCE:factor(Reactor_Type)PHWR
## factor(Country)GERMANY:factor(Reactor_Type)PHWR
## factor(Country)INDIA:factor(Reactor_Type)PHWR
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)PHWR
## factor(Country)JAPAN:factor(Reactor_Type)PHWR
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)PHWR
## factor(Country)MEXICO:factor(Reactor_Type)PHWR
## factor(Country)PAKISTAN:factor(Reactor_Type)PHWR
## factor(Country)RUSSIA:factor(Reactor_Type)PHWR
## factor(Country)SLOVAKIA:factor(Reactor_Type)PHWR
## factor(Country)SWEDEN:factor(Reactor_Type)PHWR
## factor(Country)SWITZERLAND:factor(Reactor_Type)PHWR
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)PHWR
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)PHWR
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)PHWR
## factor(Country)BELARUS:factor(Reactor_Type)PWR
## factor(Country)BRAZIL:factor(Reactor_Type)PWR
## factor(Country)CANADA:factor(Reactor_Type)PWR
## factor(Country)CHINA:factor(Reactor_Type)PWR
## factor(Country)CZECH REPUBLIC:factor(Reactor_Type)PWR
## factor(Country)FRANCE:factor(Reactor_Type)PWR
## factor(Country)GERMANY:factor(Reactor_Type)PWR
## factor(Country)INDIA:factor(Reactor_Type)PWR
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:factor(Reactor_Type)PWR
## factor(Country)JAPAN:factor(Reactor_Type)PWR
## factor(Country)KOREA, REPUBLIC OF:factor(Reactor_Type)PWR
## factor(Country)MEXICO:factor(Reactor_Type)PWR
## factor(Country)PAKISTAN:factor(Reactor_Type)PWR
## factor(Country)RUSSIA:factor(Reactor_Type)PWR
## factor(Country)SLOVAKIA:factor(Reactor_Type)PWR
## factor(Country)SWEDEN:factor(Reactor_Type)PWR
## factor(Country)SWITZERLAND:factor(Reactor_Type)PWR
## factor(Country)UNITED ARAB EMIRATES:factor(Reactor_Type)PWR
## factor(Country)UNITED KINGDOM:factor(Reactor_Type)PWR
## factor(Country)UNITED STATES OF AMERICA:factor(Reactor_Type)PWR
## factor(Country)BELARUS:Average_Concrete_Price
## factor(Country)BRAZIL:Average_Concrete_Price
## factor(Country)CANADA:Average_Concrete_Price .
## factor(Country)CHINA:Average_Concrete_Price
## factor(Country)CZECH REPUBLIC:Average_Concrete_Price
## factor(Country)FRANCE:Average_Concrete_Price
## factor(Country)GERMANY:Average_Concrete_Price
## factor(Country)INDIA:Average_Concrete_Price
## factor(Country)IRAN, ISLAMIC REPUBLIC OF:Average_Concrete_Price
## factor(Country)JAPAN:Average_Concrete_Price
## factor(Country)KOREA, REPUBLIC OF:Average_Concrete_Price
## factor(Country)MEXICO:Average_Concrete_Price
## factor(Country)PAKISTAN:Average_Concrete_Price
## factor(Country)RUSSIA:Average_Concrete_Price
## factor(Country)SLOVAKIA:Average_Concrete_Price
## factor(Country)SWEDEN:Average_Concrete_Price
## factor(Country)SWITZERLAND:Average_Concrete_Price
## factor(Country)UNITED ARAB EMIRATES:Average_Concrete_Price
## factor(Country)UNITED KINGDOM:Average_Concrete_Price
## factor(Country)UNITED STATES OF AMERICA:Average_Concrete_Price **
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Residual standard error: 0.5494 on 207 degrees of freedom
## Multiple R-squared: 0.8423, Adjusted R-squared: 0.8019
## F-statistic: 20.86 on 53 and 207 DF, p-value: < 0.00000000000000022
print("Our model without Box-Cox transformation had the R^2 Adj. value of 0.6983, whereas after transformation it went upto 0.8019. This is a huge change in positive direction. Box-Cox made our model better.")
## [1] "Our model without Box-Cox transformation had the R^2 Adj. value of 0.6983, whereas after transformation it went upto 0.8019. This is a huge change in positive direction. Box-Cox made our model better."
Equal Variance Assumption
# Performing a diagnostics analysis for the Box-Cox model.
# Now we would perform Equal Variance Assumption and Normality Assumption.
# Conducting a test for heteroscedasticity (non constant variance) and plotting a residual plot.
# Using Bursch Pagan in order to check for heteroscedasticity.
# H0: heteroscedasticity is not present (homoscedasticity)
# Ha: heteroscedasticity is present
box.cox.nuclear.best.model<-lm((((Cost_Billion_Dollars^0.3131313)-1)/0.3131313)~factor(Country)+factor(Reactor_Type)+Gross_Capacity_MWe+Duration+Average_Concrete_Price+factor(Country)*factor(Reactor_Type)+factor(Country)*Average_Concrete_Price, data = nuclear.df)
bptest(box.cox.nuclear.best.model)
##
## studentized Breusch-Pagan test
##
## data: box.cox.nuclear.best.model
## BP = 48.411, df = 53, p-value = 0.6532
print("As we can see from the BP Test, the p-value > 0.05. Therefore H0 cannot be rejected. This means that in our box cox fit model, the error terms have a constant variance i.e. homoscedasticity. Do note that the p-value decreased after the transformation.")
## [1] "As we can see from the BP Test, the p-value > 0.05. Therefore H0 cannot be rejected. This means that in our box cox fit model, the error terms have a constant variance i.e. homoscedasticity. Do note that the p-value decreased after the transformation."
# Plotting a scale location plot for visualisation.
ggplot(box.cox.nuclear.best.model, aes(x=.fitted, y=sqrt(abs(.stdresid)))) +
geom_point() +
geom_hline(yintercept = 0) +
geom_smooth()+
ggtitle("Scale-Location plot : Standardized Residual vs Fitted values")
## `geom_smooth()` using method = 'loess' and formula 'y ~ x'
## Warning: Removed 16 rows containing non-finite values (stat_smooth).
## Warning: Removed 16 rows containing missing values (geom_point).

Normality Assumption
# Checking for Normality Assumption
# Testing Normality Assumption
# Shapiro - Wilk test
# H0: the sample data are significantly normally distributed
# Ha: the sample data are not significantly normally distributed
box.cox.nuclear.best.model<-lm((((Cost_Billion_Dollars^0.3131313)-1)/0.3131313)~factor(Country)+factor(Reactor_Type)+Gross_Capacity_MWe+Duration+Average_Concrete_Price+factor(Country)*factor(Reactor_Type)+factor(Country)*Average_Concrete_Price, data = nuclear.df)
shapiro.test(residuals(box.cox.nuclear.best.model))
##
## Shapiro-Wilk normality test
##
## data: residuals(box.cox.nuclear.best.model)
## W = 0.91051, p-value = 0.00000000002259
print("From the Shapiro-Wilk normality test, we can see that the p-value < 0.05. Therefore H0 has to be rejected. This means that the sample data is still not significantly normally distributed. Do note that the p-value of Shapiro-Wilk normality test has improved sharpely after the transformation, but it is still not enough.")
## [1] "From the Shapiro-Wilk normality test, we can see that the p-value < 0.05. Therefore H0 has to be rejected. This means that the sample data is still not significantly normally distributed. Do note that the p-value of Shapiro-Wilk normality test has improved sharpely after the transformation, but it is still not enough."
# Plotting a Normal Q-Q plot for visualisation.
ggplot(nuclear.df, aes(sample=box.cox.nuclear.best.model$residuals)) +
stat_qq() +
stat_qq_line()

Linearity Assumption Test
# 1) Linearity Assumption test
# Plotting the residuals vs predicted value YÌ‚ plot.
# Residual vs fitted data plot
box.cox.nuclear.best.model<-lm((((Cost_Billion_Dollars^0.3131313)-1)/0.3131313)~factor(Country)+factor(Reactor_Type)+Gross_Capacity_MWe+Duration+Average_Concrete_Price+factor(Country)*factor(Reactor_Type)+factor(Country)*Average_Concrete_Price, data = nuclear.df)
ggplot(box.cox.nuclear.best.model, aes(x=.fitted, y=.resid)) +
geom_point() + geom_smooth()+
geom_hline(yintercept = 0)
## `geom_smooth()` using method = 'loess' and formula 'y ~ x'

print("Residual plot looks almost perfectly linear.")
## [1] "Residual plot looks almost perfectly linear."
Making Predictions
# We would now try to make an assumption based on our model.
# Prediction time.
# First checking whether the values which are to be predicted are inside the minimum and maximum values or not.
box.cox.nuclear.best.model<-lm((((Cost_Billion_Dollars^0.3131313)-1)/0.3131313)~factor(Country)+factor(Reactor_Type)+Gross_Capacity_MWe+Duration+Average_Concrete_Price+factor(Country)*factor(Reactor_Type)+factor(Country)*Average_Concrete_Price, data = nuclear.df)
# Gross_Capacity_MWe
# Duration
# Average_Concrete_Price
# Predicting the cost of a nuclear reactor made in China of the type FBR, whose construction started in year 2017 and will be completed in 6 years. The reactor generates 600 MWe of electricity. We are taking the Average concrete price to be 278 units.
# We are predicting this specific reactor because China is making such a reactor named XIAPU-1.
favstats(~Gross_Capacity_MWe, data = nuclear.df)
## min Q1 median Q3 max mean sd n missing
## 12 642 984 1188 1750 885.567 397.6515 261 0
favstats(~Duration, data = nuclear.df)
## min Q1 median Q3 max mean sd n missing
## 2 5 7 10 43 8.084291 4.778214 261 0
favstats(~Average_Concrete_Price, data = nuclear.df)
## min Q1 median Q3 max mean sd n missing
## 23 38.3 84.16667 146.11 278 105.3384 75.33257 261 0
# Model Fit
# We put our own custom values to intrapolate the value of the dependent variable.
box.cox.nuclear.best.model<-lm((((Cost_Billion_Dollars^0.3131313)-1)/0.3131313)~factor(Country)+factor(Reactor_Type)+Gross_Capacity_MWe+Duration+Average_Concrete_Price+factor(Country)*factor(Reactor_Type)+factor(Country)*Average_Concrete_Price, data = nuclear.df)
custom.data = data.frame(Country = 'CHINA', Reactor_Type = 'FBR', Gross_Capacity_MWe = 600, Duration = 6, Average_Concrete_Price = 278)
predict(box.cox.nuclear.best.model ,custom.data, interval="predict")
## Warning in stats::predict.lm(object, ...): prediction from a rank-deficient fit
## may be misleading
## fit lwr upr
## 1 0.115127 -1.492404 1.722658
print("Cannot make certain prediction due to warning.")
## [1] "Cannot make certain prediction due to warning."
The End
print("The End")
## [1] "The End"